[Scummvm-cvs-logs] SF.net SVN: scummvm: [26840] scummvm/trunk/engines/touche/ui.cpp
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Mon May 14 21:15:04 CEST 2007
Revision: 26840
http://scummvm.svn.sourceforge.net/scummvm/?rev=26840&view=rev
Author: eriktorbjorn
Date: 2007-05-14 12:14:48 -0700 (Mon, 14 May 2007)
Log Message:
-----------
Added cases for missing languages to displayQuitDialog(). Should fix feature
request #1718531. I hope I used the correct keys.
Modified Paths:
--------------
scummvm/trunk/engines/touche/ui.cpp
Modified: scummvm/trunk/engines/touche/ui.cpp
===================================================================
--- scummvm/trunk/engines/touche/ui.cpp 2007-05-14 00:00:36 UTC (rev 26839)
+++ scummvm/trunk/engines/touche/ui.cpp 2007-05-14 19:14:48 UTC (rev 26840)
@@ -559,6 +559,17 @@
ret = 1;
}
break;
+ case Common::DE_DEU:
+ if (event.kbd.ascii == 'j' || event.kbd.ascii == 'J') {
+ ret = 1;
+ }
+ break;
+ case Common::ES_ESP:
+ case Common::IT_ITA:
+ if (event.kbd.ascii == 's' || event.kbd.ascii == 'S') {
+ ret = 1;
+ }
+ break;
default:
if (event.kbd.ascii == 'y' || event.kbd.ascii == 'Y') {
ret = 1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list