From 81b5ed0025cfe1682d71113b5b1194333add2841 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 8 Dec 2011 03:56:38 +0000 Subject: [PATCH] Simple one-liner from Robin Green to fix a problem where the menu background tint would sometimes draw over the menu contents git-svn-id: https://svn.eduke32.com/eduke32@2156 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 7a6fa4749..47c65c534 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -10545,9 +10545,9 @@ MAIN_LOOP_RESTART: i = 65536; G_DrawRooms(screenpeek,i); - G_DisplayRest(i); if (getrendermode() >= 3) G_DrawBackground(); + G_DisplayRest(i); framewaiting++; }