Commit b51d8a14 authored by hybrid's avatar hybrid

Fix ifdef around Carbon defines

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4079 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 517e8965
...@@ -44,7 +44,8 @@ ...@@ -44,7 +44,8 @@
#include <IOKit/hid/IOHIDLib.h> #include <IOKit/hid/IOHIDLib.h>
#include <IOKit/hid/IOHIDKeys.h> #include <IOKit/hid/IOHIDKeys.h>
#ifndef __MAC_10_6 // only OSX 10.5 seems to not need these defines...
#if !defined(__MAC_10_5) || defined(__MAC_10_6)
// Contents from Events.h from Carbon/HIToolbox but we need it with Cocoa too // Contents from Events.h from Carbon/HIToolbox but we need it with Cocoa too
// and for some reason no Cocoa equivalent of these constants seems provided. // and for some reason no Cocoa equivalent of these constants seems provided.
// So I'm doing like everyone else and using copy-and-paste. // So I'm doing like everyone else and using copy-and-paste.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment