aboutsummaryrefslogtreecommitdiff
path: root/backends/x11/x11.cpp
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/x11/x11.cpp
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/x11/x11.cpp')
-rw-r--r--backends/x11/x11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/x11/x11.cpp b/backends/x11/x11.cpp
index 3a2e362a1d..bf7b01e278 100644
--- a/backends/x11/x11.cpp
+++ b/backends/x11/x11.cpp
@@ -649,7 +649,7 @@ bool OSystem_X11::show_mouse(bool visible)
void OSystem_X11::quit()
{
- exit(1);
+ exit(0);
}
void OSystem_X11::draw_mouse()