[Scummvm-cvs-logs] CVS: scummvm/gui launcher.cpp,1.88.2.5,1.88.2.6
Torbjörn Andersson
eriktorbjorn at users.sourceforge.net
Tue Nov 9 00:39:01 CET 2004
Update of /cvsroot/scummvm/scummvm/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11365
Modified Files:
Tag: branch-0-6-0
launcher.cpp
Log Message:
Fix for bug #1062906, just in case we want to release another 0.6.x.
Index: launcher.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/launcher.cpp,v
retrieving revision 1.88.2.5
retrieving revision 1.88.2.6
diff -u -d -r1.88.2.5 -r1.88.2.6
--- launcher.cpp 29 Jul 2004 00:04:59 -0000 1.88.2.5
+++ launcher.cpp 9 Nov 2004 08:38:07 -0000 1.88.2.6
@@ -583,7 +583,7 @@
void LauncherDialog::removeGame(int item) {
MessageDialog alert("Do you really want to remove this game configuration?", "Yes", "No");
- if (alert.runModal() > 0) {
+ if (alert.runModal() == 1) {
// Remove the currently selected game from the list
assert(item >= 0);
ConfMan.removeGameDomain(_domains[item]);
More information about the Scummvm-git-logs
mailing list