From 28e69d07934edfcaa0dd12f175a1adfbe32e0be5 Mon Sep 17 00:00:00 2001 From: ny00123 Date: Sat, 21 Mar 2020 21:51:59 +0000 Subject: [PATCH] Revert the change of call to FAF_DrawRooms into a conditional one, as done in r8766, since this breaks status bar output in tiled overhead map with Polymost. Do add comment about this for now. git-svn-id: https://svn.eduke32.com/eduke32@8779 1a8010ca-5511-0410-912e-c29ae57300e0 # Conflicts: # source/sw/src/draw.cpp --- source/sw/src/draw.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/sw/src/draw.cpp b/source/sw/src/draw.cpp index 5df9cc879..2fd4e1a9d 100644 --- a/source/sw/src/draw.cpp +++ b/source/sw/src/draw.cpp @@ -2135,7 +2135,9 @@ drawscreen(PLAYERp pp) JS_DrawMirrors(pp, tx, ty, tz, tq16ang, tq16horiz); } - if (dimensionmode != 6 && !FAF_DebugView) + // TODO: This call is redundant if the tiled overhead map is shown, but the + // HUD elements should be properly outputted with hardware rendering first. + if (!FAF_DebugView) FAF_DrawRooms(tx, ty, tz, tq16ang, tq16horiz, tsectnum); analyzesprites(tx, ty, tz, FALSE);