Fix Torque 64 define.

This commit is contained in:
LuisAntonRebollo 2014-09-26 00:10:14 +02:00
parent c633933554
commit df37afac34

View file

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