1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Skip rendering when the movie is started

This commit is contained in:
Mathieu Schroeter 2017-02-12 19:04:46 +01:00
parent a832b24869
commit d3cb222b98

View File

@ -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;