From 8c90efc38cb9e8c9f728280138dd86820a502888 Mon Sep 17 00:00:00 2001 From: Ketmar Dark Date: Thu, 21 Sep 2017 15:45:49 +0300 Subject: [PATCH] holmes: moved non-ui renderer to a better place in global render list --- src/game/g_game.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/g_game.pas b/src/game/g_game.pas index ab843d3..97a5959 100644 --- a/src/game/g_game.pas +++ b/src/game/g_game.pas @@ -3305,6 +3305,9 @@ begin e_DrawLine(2, 0, gScreenHeight div 2, gScreenWidth, gScreenHeight div 2, 0, 0, 0); end; + // draw inspector + if (g_holmes_enabled) then g_Holmes_Draw(); + if MessageText <> '' then begin w := 0; @@ -3495,9 +3498,6 @@ begin g_ActiveWindow.Draw(); end; - // draw inspector - if (g_holmes_enabled) then g_Holmes_Draw(); - g_Console_Draw(); if g_debug_Sounds and gGameOn then -- 2.29.2