diff options
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/menu.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/touche/menu.cpp b/engines/touche/menu.cpp index c3c14c61d3..82490fca38 100644 --- a/engines/touche/menu.cpp +++ b/engines/touche/menu.cpp @@ -395,6 +395,7 @@ void ToucheEngine::handleOptions(int forceDisplay) { while (_eventMan->pollEvent(event)) { const Button *button = 0; switch (event.type) { + case Common::EVENT_RTL: case Common::EVENT_QUIT: menuData.quit = true; menuData.exit = true; @@ -556,6 +557,7 @@ int ToucheEngine::displayQuitDialog() { Common::Event event; while (_eventMan->pollEvent(event)) { switch (event.type) { + case Common::EVENT_RTL: case Common::EVENT_QUIT: quitLoop = true; ret = 1; |