mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix USE_OPENGL=0 build error in r4779.
git-svn-id: https://svn.eduke32.com/eduke32@4787 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f311631d6e
commit
44844bb4cc
1 changed files with 2 additions and 0 deletions
|
@ -2516,6 +2516,7 @@ static void M_MenuEntryOptionDidModify(MenuEntry_t *entry)
|
||||||
entry == &ME_PLAYER_COLOR ||
|
entry == &ME_PLAYER_COLOR ||
|
||||||
entry == &ME_PLAYER_TEAM)
|
entry == &ME_PLAYER_TEAM)
|
||||||
G_UpdatePlayerFromMenu();
|
G_UpdatePlayerFromMenu();
|
||||||
|
#ifdef USE_OPENGL
|
||||||
else if (entry == &ME_DISPLAYSETUP_ANISOTROPY)
|
else if (entry == &ME_DISPLAYSETUP_ANISOTROPY)
|
||||||
gltexapplyprops();
|
gltexapplyprops();
|
||||||
else if (entry == &ME_RENDERERSETUP_TEXQUALITY)
|
else if (entry == &ME_RENDERERSETUP_TEXQUALITY)
|
||||||
|
@ -2526,6 +2527,7 @@ static void M_MenuEntryOptionDidModify(MenuEntry_t *entry)
|
||||||
OSD_Printf("restartvid: Reset failed...\n");
|
OSD_Printf("restartvid: Reset failed...\n");
|
||||||
r_downsizevar = r_downsize;
|
r_downsizevar = r_downsize;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void M_MenuCustom2ColScreen(/*MenuEntry_t *entry*/)
|
static void M_MenuCustom2ColScreen(/*MenuEntry_t *entry*/)
|
||||||
|
|
Loading…
Reference in a new issue