From d3cb222b98465c8665c1927f3740d5eb651bb5f6 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Sun, 12 Feb 2017 19:04:46 +0100 Subject: [PATCH] Skip rendering when the movie is started --- src/blupi.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/blupi.cpp b/src/blupi.cpp index d7c031d..3982a9e 100644 --- a/src/blupi.cpp +++ b/src/blupi.cpp @@ -346,7 +346,9 @@ static void WindowProc2 (const SDL_Event &event) { if (g_bActive) UpdateFrame(); - g_pPixmap->Display(); + + if (!g_pEvent->IsMovie ()) + g_pPixmap->Display (); } break;