aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Rolfi2002-03-08 23:55:47 +0000
committerEnrico Rolfi2002-03-08 23:55:47 +0000
commit88378a2ed862c86d541afbc9584d6bb7e7a2d03f (patch)
tree649932e75fe0e48ea3c85981b8541aedfa70d15e
parentc2e7fba23ad3ea5dd62988efa420292951c7611f (diff)
downloadscummvm-rg350-88378a2ed862c86d541afbc9584d6bb7e7a2d03f.tar.gz
scummvm-rg350-88378a2ed862c86d541afbc9584d6bb7e7a2d03f.tar.bz2
scummvm-rg350-88378a2ed862c86d541afbc9584d6bb7e7a2d03f.zip
Added an alias declaration for the Point type as SCUMM_Point cause it already exists on the MacOS
svn-id: r3696
-rw-r--r--scumm.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm.h b/scumm.h
index a5f933a350..39bf12e30d 100644
--- a/scumm.h
+++ b/scumm.h
@@ -24,6 +24,10 @@
#include <mad.h>
#endif
+#ifdef macintosh
+ #define Point SCUMM_Point
+#endif
+
#define SCUMMVM_VERSION "0.1.0 devel"
#define SWAP(a,b) do{int tmp=a; a=b; b=tmp; } while(0)