mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Fix Mapster32 mouse cursor in GL
git-svn-id: https://svn.eduke32.com/eduke32@5012 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f3e8ffa714
commit
cde502d511
1 changed files with 11 additions and 2 deletions
|
@ -2380,7 +2380,13 @@ static void m32_showmouse(void)
|
|||
break;
|
||||
}
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
if (getrendermode() >= REND_POLYMOST)
|
||||
{
|
||||
push_nofog();
|
||||
bglDisable(GL_TEXTURE_2D);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (col != whitecol)
|
||||
{
|
||||
|
@ -2419,7 +2425,10 @@ static void m32_showmouse(void)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
if (getrendermode() >= REND_POLYMOST)
|
||||
pop_nofog();
|
||||
#endif
|
||||
}
|
||||
|
||||
int32_t AskIfSure(const char *text)
|
||||
|
|
Loading…
Reference in a new issue