From e0f11edf45361eb79ee281254602edc1748007e0 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 20 Sep 2002 00:12:58 +0000 Subject: 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 --- backends/x11/x11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/x11/x11.cpp') 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() -- cgit v1.2.3