Ticket #7928: scumm_h.patch

File scumm_h.patch, 512 bytes (added by SF/junior_aepi, 23 years ago)

Patches scumm.h because the structure "Point" is allready defined by the OS X api

Line 
1
2scumm_h.patchW¸A«mBIN‚ßO--- scumm.h Tue Dec 11 08:34:15 2001
3+++ ../scumm.h Fri Dec 14 19:44:08 2001
4@@ -21,6 +21,11 @@
5
6 #include "scummsys.h"
7
8+#ifdef __APPLE__
9+ //Point is allready defined in the Quicktime Spec.
10+ #define Point SCUMM_Point
11+#endif
12+
13 #define SWAP(a,b) do{int tmp=a; a=b; b=tmp; } while(0)
14 #define ARRAYSIZE(x) (sizeof(x)/sizeof(x[0]))
15
16