diff --git a/Engine/source/console/compiler.cpp b/Engine/source/console/compiler.cpp index ca1282ca6..49125389f 100644 --- a/Engine/source/console/compiler.cpp +++ b/Engine/source/console/compiler.cpp @@ -65,8 +65,8 @@ namespace Compiler void evalSTEtoCode(StringTableEntry ste, U32 ip, U32 *ptr) { -#ifdef TORQUE_64 - *((U64*)(ptr) = (U64)ste; +#ifdef TORQUE_CPU_X64 + *(U64*)(ptr) = (U64)ste; #else *ptr = (U32)ste; #endif