Cocoa: Remove duplicate includes

Fixes #838.
master
Camilla Berglund ago%!(EXTRA string=9 years)
parent f1c536fe13
commit c18d3aecbc
  1. 1
      README.md
  2. 2
      src/cocoa_monitor.m

@ -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

@ -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>

Loading…
Cancel
Save