From ef6c39ec55d8a1b67c5334e77c2d77ca5c128401 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 14 Nov 2022 10:49:25 +0100 Subject: [PATCH] - added a CVAR that allows drawing any tile to the top of the screen. For quick examination of tiles. --- source/core/mainloop.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/core/mainloop.cpp b/source/core/mainloop.cpp index ec7deaa53..8d551b24f 100644 --- a/source/core/mainloop.cpp +++ b/source/core/mainloop.cpp @@ -396,6 +396,7 @@ void DrawOverlays() // Display // //========================================================================== +CVAR(Int, drawtile, -1, 0) // debug stuff. Draws the tile with the given number on top of thze HUD void Display() { @@ -452,12 +453,19 @@ void Display() } if (nextwipe == wipe_None) + { DrawOverlays(); + if (drawtile >= 0) + { + DrawTexture(twod, tileGetTexture(drawtile), false, 0, 0, DTA_FullscreenScale, FSMode_Fit320x200, DTA_TopLeft, true, TAG_DONE); + } + } else { PerformWipe(wipestart, screen->WipeEndScreen(), nextwipe, true, DrawOverlays); nextwipe = wipe_None; } + screen->Update(); }