mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-07 16:31:07 +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)
|
inline int uallong(const int &foo)
|
||||||
{
|
{
|
||||||
return foo;
|
return foo;
|
||||||
|
|
Loading…
Reference in a new issue