aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorChris Apers2003-11-28 10:08:36 +0000
committerChris Apers2003-11-28 10:08:36 +0000
commit9da541f6577b63638000b79569b98e3075ed920c (patch)
treea8d45e6963251f4823c4b72a6c35c38bd9160d40 /gui
parenta1d778a18e94518b7c42c561786fac11f383ec81 (diff)
downloadscummvm-rg350-9da541f6577b63638000b79569b98e3075ed920c.tar.gz
scummvm-rg350-9da541f6577b63638000b79569b98e3075ed920c.tar.bz2
scummvm-rg350-9da541f6577b63638000b79569b98e3075ed920c.zip
This is no more needed
svn-id: r11407
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 3f25bcb44d..fbc5f7e277 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -23,10 +23,6 @@
#include "newgui.h"
#include "dialog.h"
-#ifdef __PALM_OS__
-# include "palm.h"
-#endif
-
#ifdef NEW_FONT_CODE
#include "gui/font.h"
#endif
@@ -138,15 +134,6 @@ void NewGui::runLoop() {
}
while (!_dialogStack.empty() && activeDialog == _dialogStack.top()) {
-#ifdef __PALM_OS__
- // There is no exit(.) function under PalmOS, to exit an app
- // we need to send an 'exit' event to the event handler
- // and then the system return to the launcher. But this event
- // is not handled by the following loop and so we need to force exit.
- // In other systems like Windows ScummVM exit immediatly and so this doesn't appear.
- if (((OSystem_PALMOS *)_system)->_quit)
- return;
-#endif
activeDialog->handleTickle();
if (_needRedraw) {