From b1ebd6eedf9c31d69164548f69a99b1f894ac6fe Mon Sep 17 00:00:00 2001 From: feos Date: Wed, 1 Jun 2022 17:23:41 +0300 Subject: [PATCH] include wipe effect into video capture fixes #503 --- prboom2/src/d_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prboom2/src/d_main.c b/prboom2/src/d_main.c index af7704af8..244a1447f 100644 --- a/prboom2/src/d_main.c +++ b/prboom2/src/d_main.c @@ -246,6 +246,10 @@ static void D_Wipe(void) I_UpdateNoBlit(); M_Drawer(); // menu is drawn even on top of wipes I_FinishUpdate(); // page flip or blit buffer + if (capturing_video && !doSkip) + { + I_CaptureFrame(); + } } while (!done); }