1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Cocoa: Remove duplicate includes

Fixes #838.
This commit is contained in:
Camilla Berglund 2016-08-17 01:29:06 +02:00
parent f1c536fe13
commit c18d3aecbc
2 changed files with 1 additions and 2 deletions

View File

@ -112,6 +112,7 @@ information on what to include when reporting a bug.
- [Cocoa] Bugfix: Event processing would segfault on some machines due to
a previous distributed notification listener not being fully
removed (#817,#826)
- [Cocoa] Bugfix: Some include statements were duplicated (#838)
- [X11] Bugfix: Window size limits were ignored if the minimum or maximum size
was set to `GLFW_DONT_CARE` (#805)
- [X11] Bugfix: Input focus was set before window was visible, causing

View File

@ -27,11 +27,9 @@
#include "internal.h"
#include <stdlib.h>
#include <stdlib.h>
#include <limits.h>
#include <IOKit/graphics/IOGraphicsLib.h>
#include <IOKit/graphics/IOGraphicsLib.h>
#include <CoreVideo/CVBase.h>
#include <CoreVideo/CVDisplayLink.h>