mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix automapping not working when looking at the textured map mode
git-svn-id: https://svn.eduke32.com/eduke32@7881 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7553bb043f
commit
c5dbbe892c
1 changed files with 1 additions and 1 deletions
|
@ -765,7 +765,7 @@ void G_DrawRooms(int32_t playerNum, int32_t smoothRatio)
|
|||
|
||||
VM_OnEvent(EVENT_DISPLAYSTART, pPlayer->i, playerNum);
|
||||
|
||||
if (ud.overhead_on == 2 || ud.show_help || (pPlayer->cursectnum == -1 && videoGetRenderMode() != REND_CLASSIC))
|
||||
if ((ud.overhead_on == 2 && !automapping) || ud.show_help || (pPlayer->cursectnum == -1 && videoGetRenderMode() != REND_CLASSIC))
|
||||
return;
|
||||
|
||||
if (r_usenewaspect)
|
||||
|
|
Loading…
Reference in a new issue