aboutsummaryrefslogtreecommitdiff
path: root/backends/wince
diff options
context:
space:
mode:
authorMax Horn2002-09-20 00:12:58 +0000
committerMax Horn2002-09-20 00:12:58 +0000
commite0f11edf45361eb79ee281254602edc1748007e0 (patch)
treedf4e9a1cac5237e44ab9101baa9dcbe53e6009e7 /backends/wince
parentfcfc72296ccf751d4900d05129cbefcc0823550b (diff)
downloadscummvm-rg350-e0f11edf45361eb79ee281254602edc1748007e0.tar.gz
scummvm-rg350-e0f11edf45361eb79ee281254602edc1748007e0.tar.bz2
scummvm-rg350-e0f11edf45361eb79ee281254602edc1748007e0.zip
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?)
svn-id: r4979
Diffstat (limited to 'backends/wince')
-rw-r--r--backends/wince/pocketpc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/pocketpc.cpp b/backends/wince/pocketpc.cpp
index 6adb61b0b3..4d4406a3a6 100644
--- a/backends/wince/pocketpc.cpp
+++ b/backends/wince/pocketpc.cpp
@@ -1499,8 +1499,8 @@ uint32 OSystem_WINCE3::property(int param, Property *value) {
}
void OSystem_WINCE3::quit() {
- unload_gfx_mode();
- exit(1);
+ unload_gfx_mode();
+ exit(0);
}
/* CDRom Audio */