mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 05:20:31 +00:00
Fix Torque 64 define.
This commit is contained in:
parent
c633933554
commit
df37afac34
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue