Fix compilation

svn-id: r16605
This commit is contained in:
Eugene Sandulenko 2005-01-21 23:16:38 +00:00
parent 58ec0f0aad
commit ebe40f024e
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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*/