- 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.
This commit is contained in:
Christoph Oelckers 2022-10-19 00:11:44 +02:00
parent 0cef35c345
commit 6e11a4317e

View file

@ -1328,7 +1328,10 @@ void drawscreen(PLAYER* pp, double interpfrac, bool sceneonly)
RestorePortalState();
if (sceneonly)
{
PostDraw();
return;
}
MarkSectorSeen(pp->cursector);