Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed compile error on Mac OS X 10.4
- Loading branch information
Showing
with
10 additions
and
10 deletions.
-
+0
−10
src/video/cocoa/SDL_cocoakeyboard.m
-
+10
−0
src/video/cocoa/SDL_cocoavideo.h
|
@@ -28,16 +28,6 @@ |
|
|
|
|
|
#include <Carbon/Carbon.h> |
|
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4 |
|
|
#if __LP64__ |
|
|
typedef long NSInteger; |
|
|
typedef unsigned long NSUInteger; |
|
|
#else |
|
|
typedef int NSInteger; |
|
|
typedef unsigned int NSUInteger; |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
//#define DEBUG_IME NSLog |
|
|
#define DEBUG_IME |
|
|
|
|
|
|
@@ -39,6 +39,16 @@ |
|
|
#include "SDL_cocoaopengl.h" |
|
|
#include "SDL_cocoawindow.h" |
|
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4 |
|
|
#if __LP64__ |
|
|
typedef long NSInteger; |
|
|
typedef unsigned long NSUInteger; |
|
|
#else |
|
|
typedef int NSInteger; |
|
|
typedef unsigned int NSUInteger; |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
/* Private display data */ |
|
|
|
|
|
@class SDLTranslatorResponder; |
|
|