mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-17 10:11:02 +00:00
Menu: Compile M_DrawAddons without any optimizes
This commit is contained in:
parent
2629301947
commit
3e26e2a443
1 changed files with 9 additions and 0 deletions
|
@ -4884,6 +4884,11 @@ static boolean M_AddonsRefresh(void)
|
|||
|
||||
#define offs 1
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC optimize ("0")
|
||||
#pragma GCC push_options
|
||||
#endif
|
||||
|
||||
static void M_DrawAddons(void)
|
||||
{
|
||||
INT32 x, y;
|
||||
|
@ -5005,6 +5010,10 @@ static void M_DrawAddons(void)
|
|||
#undef CANSAVE
|
||||
}
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC pop_options
|
||||
#endif
|
||||
|
||||
#undef offs
|
||||
|
||||
static void M_AddonExec(INT32 ch)
|
||||
|
|
Loading…
Reference in a new issue