diff options
author | Ludvig Strigeus | 2001-10-11 08:00:42 +0000 |
---|---|---|
committer | Ludvig Strigeus | 2001-10-11 08:00:42 +0000 |
commit | 67c6b323ff8fdd62bfe61f0c9d6d89745b4b3384 (patch) | |
tree | 70f4aab0b703e9936147d94740125df87ddd6ffd | |
parent | ae88928839c201c276e015064fefac87a5dc0a0d (diff) | |
download | scummvm-rg350-67c6b323ff8fdd62bfe61f0c9d6d89745b4b3384.tar.gz scummvm-rg350-67c6b323ff8fdd62bfe61f0c9d6d89745b4b3384.tar.bz2 scummvm-rg350-67c6b323ff8fdd62bfe61f0c9d6d89745b4b3384.zip |
Dump scripts by using DUMP_SCRIPTS as a compile option instead.
svn-id: r3422
-rw-r--r-- | scumm.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -17,6 +17,9 @@ * * Change Log: * $Log$ + * Revision 1.6 2001/10/11 08:00:42 strigeus + * Dump scripts by using DUMP_SCRIPTS as a compile option instead. + * * Revision 1.5 2001/10/10 10:02:33 strigeus * alternative mouse cursor * basic save&load @@ -41,7 +44,6 @@ #define SWAP(a,b) do{int tmp=a; a=b; b=tmp; } while(0) #define BYPASS_COPY_PROT -#define DUMP_SCRIPTS struct Scumm; struct Actor; @@ -1264,4 +1266,4 @@ void checkHeap(); void initGraphics(Scumm *s); void updateScreen(Scumm *s); -void drawMouse(Scumm *s, int x, int y, int color, byte *mask, bool visible);
\ No newline at end of file +void drawMouse(Scumm *s, int x, int y, int color, byte *mask, bool visible); |