mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Use dummy uallong() function for all Intel targets
64-bit Intel targets built with GCC/Clang were using strict memory alignment version of this function
This commit is contained in:
parent
72f181be08
commit
09e2326c63
1 changed files with 1 additions and 1 deletions
|
@ -815,7 +815,7 @@ TArray<FString> ACS_StringBuilderStack;
|
|||
//
|
||||
//============================================================================
|
||||
|
||||
#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__)
|
||||
#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__x86_64__)
|
||||
inline int uallong(const int &foo)
|
||||
{
|
||||
return foo;
|
||||
|
|
Loading…
Reference in a new issue