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

Stop movie on RETURN

It fixes issue https://github.com/blupi-games/planetblupi/issues/80
This commit is contained in:
Mathieu Schroeter 2021-01-14 23:40:09 +01:00
parent e89c75126a
commit fc01379290
No known key found for this signature in database
GPG Key ID: 8B9145A5FA9DA8A8

View File

@ -5868,6 +5868,12 @@ CEvent::TreatEventBase (const SDL_Event & event)
}
return true;
case SDLK_RETURN:
if (m_bRunMovie)
{
StopMovie ();
return true;
}
switch (m_phase)
{
case EV_PHASE_SETTINGS: