aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-05-15 16:25:34 +0000
committerTorbjörn Andersson2007-05-15 16:25:34 +0000
commitda658640ff194d42208c8fc17c28075071308b1d (patch)
treebcf6250f68759598f9d259fcddb8e95f99d65658 /engines
parent73749ddafa03c2b6af87cfe63a30a66333c3bb90 (diff)
downloadscummvm-rg350-da658640ff194d42208c8fc17c28075071308b1d.tar.gz
scummvm-rg350-da658640ff194d42208c8fc17c28075071308b1d.tar.bz2
scummvm-rg350-da658640ff194d42208c8fc17c28075071308b1d.zip
Removed the case for the Italian version from displayQuitDialog(). According to
cyx, it uses the same keys as the English version. Odd. svn-id: r26846
Diffstat (limited to 'engines')
-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;
}