aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--saga/saga.h2
-rw-r--r--saga/script.h2
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*/