Skip to content

Commit

Permalink
Avoid wipe frame capture
Browse files Browse the repository at this point in the history
  • Loading branch information
kraflab committed Nov 14, 2023
1 parent 5ee7cf4 commit 4c9f6b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion prboom2/src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,14 @@ static void D_DoomLoop(void)
{
isExtraDDisplay = !first;
first = false;
I_QueueFrameCapture();

if (gamestate != wipegamestate || cap_wipescreen)
{
I_QueueFrameCapture();
}

D_Display(cap_frac);

isExtraDDisplay = false;
cap_frac += cap_step;
}
Expand Down

0 comments on commit 4c9f6b9

Please sign in to comment.