From 6e11a4317ed78734a0db3c6cdf461307db8451ad Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 19 Oct 2022 00:11:44 +0200 Subject: [PATCH] - SW: fixed savegame pic generation corrupting the actor list. This case missed the call to PostDraw which is responsible for cleaning up some temporary data. --- source/games/sw/src/draw.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/games/sw/src/draw.cpp b/source/games/sw/src/draw.cpp index da806a5d7..f301634c3 100644 --- a/source/games/sw/src/draw.cpp +++ b/source/games/sw/src/draw.cpp @@ -1328,7 +1328,10 @@ void drawscreen(PLAYER* pp, double interpfrac, bool sceneonly) RestorePortalState(); if (sceneonly) + { + PostDraw(); return; + } MarkSectorSeen(pp->cursector);