2
0
LuisAntonRebollo 11 жил өмнө
parent
commit
df37afac34

+ 2 - 2
Engine/source/console/compiler.cpp

@@ -65,8 +65,8 @@ namespace Compiler
 
 
    void evalSTEtoCode(StringTableEntry ste, U32 ip, U32 *ptr)
    void evalSTEtoCode(StringTableEntry ste, U32 ip, U32 *ptr)
    {
    {
-#ifdef TORQUE_64
-      *((U64*)(ptr) = (U64)ste;
+#ifdef TORQUE_CPU_X64
+      *(U64*)(ptr) = (U64)ste;
 #else
 #else
       *ptr = (U32)ste;
       *ptr = (U32)ste;
 #endif
 #endif