mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-02 20:10:32 +00:00
Merge pull request #1677 from Areloch/i386FlagFlip
Flips the i386 flag to __i386__
This commit is contained in:
commit
ea0ba04a9c
2 changed files with 2 additions and 2 deletions
|
|
@ -115,7 +115,7 @@ typedef unsigned long U64;
|
|||
|
||||
//--------------------------------------
|
||||
// Identify the CPU
|
||||
#if defined(i386)
|
||||
#if defined(i386) || defined(__i386) || defined(__i386__)
|
||||
# define TORQUE_CPU_STRING "Intel x86"
|
||||
# define TORQUE_CPU_X86
|
||||
# define TORQUE_LITTLE_ENDIAN
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ F32 Platform::getRandom()
|
|||
}
|
||||
|
||||
|
||||
#if defined(i386) || defined(__x86_64__)
|
||||
#if defined(TORQUE_CPU_X86) || defined(__x86_64__)
|
||||
|
||||
U32 Platform::getMathControlState()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue