diff options
-rw-r--r-- | sword2/interpreter.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sword2/interpreter.cpp b/sword2/interpreter.cpp index 98a9cb516c..b4b3247c60 100644 --- a/sword2/interpreter.cpp +++ b/sword2/interpreter.cpp @@ -29,7 +29,11 @@ namespace Sword2 { // The machine code table -#define OPCODE(x) { &Logic::x, #x } +#ifndef REDUCE_MEMORY_USAGE +# define OPCODE(x) { &Logic::x, #x } +#else +# define OPCODE(x) { &Logic::x, "" } +#endif typedef int32 (Logic::*OpcodeProc)(int32 *); struct OpcodeEntry { |