From 09d163cb2f84878e204b9e5074f64708c0b825d2 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 6 Jun 2020 10:38:35 +0200 Subject: [PATCH] - fixed: the last frame of the intermission screen wasn't rendered. --- wadsrc/static/zscript/ui/statscreen/statscreen.zs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wadsrc/static/zscript/ui/statscreen/statscreen.zs b/wadsrc/static/zscript/ui/statscreen/statscreen.zs index 6b7119ae5..007b3a9e3 100644 --- a/wadsrc/static/zscript/ui/statscreen/statscreen.zs +++ b/wadsrc/static/zscript/ui/statscreen/statscreen.zs @@ -820,12 +820,10 @@ class StatusScreen abstract play version("2.5") break; case ShowNextLoc: + case LeavingIntermission: // this must still draw the screen once more for the wipe code to pick up. drawShowNextLoc(); break; - case LeavingIntermission: - break; - default: drawNoState(); break;