mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- workaround MSVC 2015 code generation issue, x64 only
With optimization turned on illegal instructions were generated for turbo CVAR handler function https://forum.zdoom.org/viewtopic.php?t=63157
This commit is contained in:
parent
7d4765b5cd
commit
e8f45fad40
1 changed files with 10 additions and 0 deletions
|
@ -222,6 +222,12 @@ EXTERN_CVAR (Int, team)
|
|||
|
||||
CVAR (Bool, teamplay, false, CVAR_SERVERINFO)
|
||||
|
||||
// Workaround for x64 code generation bug in MSVC 2015
|
||||
// Optimized targets contain illegal instructions in the function below
|
||||
#if defined _M_X64 && _MSC_VER < 1910
|
||||
#pragma optimize("", off)
|
||||
#endif // _M_X64 && _MSC_VER < 1910
|
||||
|
||||
// [RH] Allow turbo setting anytime during game
|
||||
CUSTOM_CVAR (Float, turbo, 100.f, CVAR_NOINITCALL)
|
||||
{
|
||||
|
@ -244,6 +250,10 @@ CUSTOM_CVAR (Float, turbo, 100.f, CVAR_NOINITCALL)
|
|||
}
|
||||
}
|
||||
|
||||
#if defined _M_X64 && _MSC_VER < 1910
|
||||
#pragma optimize("", on)
|
||||
#endif // _M_X64 && _MSC_VER < 1910
|
||||
|
||||
CCMD (turnspeeds)
|
||||
{
|
||||
if (argv.argc() == 1)
|
||||
|
|
Loading…
Reference in a new issue