aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/touche/ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/touche/ui.cpp b/engines/touche/ui.cpp
index 01aa89f26d..ba4dba9037 100644
--- a/engines/touche/ui.cpp
+++ b/engines/touche/ui.cpp
@@ -565,12 +565,13 @@ int ToucheEngine::displayQuitDialog() {
}
break;
case Common::ES_ESP:
- case Common::IT_ITA:
if (event.kbd.ascii == 's' || event.kbd.ascii == 'S') {
ret = 1;
}
break;
default:
+ // According to cyx, the Italian version uses the same
+ // keys as the English one.
if (event.kbd.ascii == 'y' || event.kbd.ascii == 'Y') {
ret = 1;
}