diff options
author | Max Horn | 2003-06-08 11:54:35 +0000 |
---|---|---|
committer | Max Horn | 2003-06-08 11:54:35 +0000 |
commit | 083f4c48455d2bdeb84877c7f3ce2b0169bff94e (patch) | |
tree | f0ff1943f65c5c9e1d806e3a5313b3c09561d185 | |
parent | b3126658f5656009387efd63b7b3c1bde1f7ce50 (diff) | |
download | scummvm-rg350-083f4c48455d2bdeb84877c7f3ce2b0169bff94e.tar.gz scummvm-rg350-083f4c48455d2bdeb84877c7f3ce2b0169bff94e.tar.bz2 scummvm-rg350-083f4c48455d2bdeb84877c7f3ce2b0169bff94e.zip |
never call exit(), always go thrugh OSystem::quit()
svn-id: r8397
-rw-r--r-- | scumm/charset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index ae05e3767a..b895043d25 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -507,7 +507,7 @@ void CharsetRendererV2::setCurID(byte id) { } } printf("\n"); - exit(0); + _system->quit(); #endif } |