diff options
author | Eugene Sandulenko | 2005-01-21 23:16:38 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-01-21 23:16:38 +0000 |
commit | ebe40f024e2c2717ad5d97fa30506f5ede97479b (patch) | |
tree | 904fdbd54651285d85f61b254989fbc3ce2f70f5 | |
parent | 58ec0f0aadd5228732a3c5915b9a94ec00e9cc53 (diff) | |
download | scummvm-rg350-ebe40f024e2c2717ad5d97fa30506f5ede97479b.tar.gz scummvm-rg350-ebe40f024e2c2717ad5d97fa30506f5ede97479b.tar.bz2 scummvm-rg350-ebe40f024e2c2717ad5d97fa30506f5ede97479b.zip |
Fix compilation
svn-id: r16605
-rw-r--r-- | saga/saga.h | 2 | ||||
-rw-r--r-- | saga/script.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/saga/saga.h b/saga/saga.h index ccf663600a..4e365dec58 100644 --- a/saga/saga.h +++ b/saga/saga.h @@ -75,7 +75,7 @@ class PalAnim; #define OBJECT_TYPE_SHIFT 13 #define OBJECT_TYPE_MASK ((1 << OBJECT_TYPE_SHIFT) - 1) -#define memoryError(Place) error(Place##" Memory allocation error.") +#define memoryError(Place) error("%s Memory allocation error.", Place) struct RSCFILE_CONTEXT; struct StringList; diff --git a/saga/script.h b/saga/script.h index 04796d108b..c0f2e5abae 100644 --- a/saga/script.h +++ b/saga/script.h @@ -54,7 +54,7 @@ enum AddressTypes { kAddressStatic = 1, // offset from global variables kAddressModule = 2, // offset from start of module kAddressStack = 3, // offset from stack - kAddressThread = 4, // offset from thread structure + kAddressThread = 4 // offset from thread structure /* kAddressId = 5, // offset from const id object kAddressIdIndirect = 6, // offset from stack id object kAddressIndex = 7 // index from id*/ |