Menu: Compile M_DrawAddons without any optimizes

This commit is contained in:
Alam Ed Arias 2017-09-28 17:38:14 -04:00
parent 2629301947
commit 3e26e2a443
1 changed files with 9 additions and 0 deletions

View File

@ -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)