[Scummvm-cvs-logs] CVS: scummvm/backends/wince pocketpc.cpp,1.2,1.3

Max Horn fingolfin at users.sourceforge.net
Thu Sep 19 17:14:17 CEST 2002


Update of /cvsroot/scummvm/scummvm/backends/wince
In directory usw-pr-cvs1:/tmp/cvs-serv15786/backends/wince

Modified Files:
	pocketpc.cpp 
Log Message:
quit should not exit(1) but rather exit(0) (mabye we should add a paramter 'bool success' to it that flags whether this is a normal exit or one with an error?)

Index: pocketpc.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/wince/pocketpc.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pocketpc.cpp	9 Sep 2002 05:56:10 -0000	1.2
+++ pocketpc.cpp	20 Sep 2002 00:12:58 -0000	1.3
@@ -1499,8 +1499,8 @@
 }
 		
 void OSystem_WINCE3::quit() {
-	unload_gfx_mode();		
-	exit(1);
+	unload_gfx_mode();
+	exit(0);
 }
 
 /* CDRom Audio */





More information about the Scummvm-git-logs mailing list