diff options
author | Max Horn | 2002-09-20 00:12:58 +0000 |
---|---|---|
committer | Max Horn | 2002-09-20 00:12:58 +0000 |
commit | e0f11edf45361eb79ee281254602edc1748007e0 (patch) | |
tree | df4e9a1cac5237e44ab9101baa9dcbe53e6009e7 /backends/x11 | |
parent | fcfc72296ccf751d4900d05129cbefcc0823550b (diff) | |
download | scummvm-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')
-rw-r--r-- | backends/x11/x11.cpp | 2 |
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() |