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

Exit the settings screen with escape or return

This commit is contained in:
Mathieu Schroeter 2017-03-03 17:42:29 +01:00
parent 10a81cc144
commit 63285d466e

View File

@ -4954,7 +4954,8 @@ bool CEvent::TreatEventBase (const SDL_Event &event)
ChangePhase (WM_PHASE_INFO);
return true;
}
if (m_phase == WM_PHASE_INFO)
if ( m_phase == WM_PHASE_INFO
|| m_phase == WM_PHASE_SETTINGS)
{
ChangePhase (WM_PHASE_INIT);
return true;
@ -4981,6 +4982,11 @@ bool CEvent::TreatEventBase (const SDL_Event &event)
}
return true;
case SDLK_RETURN:
if (m_phase == WM_PHASE_SETTINGS)
{
ChangePhase (WM_PHASE_INIT);
return true;
}
if (m_phase == WM_PHASE_PLAY ||
m_phase == WM_PHASE_READ ||
m_phase == WM_PHASE_WRITE ||