aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorChris Apers2003-12-15 15:13:36 +0000
committerChris Apers2003-12-15 15:13:36 +0000
commitdb2bf22b35fa25daf0f8acf573eb30c31ab9381e (patch)
tree89a793556fd2860dfc9ec07fc833bc84062c57ac /common
parentde1a8fdafaba42bcb3affa5f87cfcac4d681e640 (diff)
downloadscummvm-rg350-db2bf22b35fa25daf0f8acf573eb30c31ab9381e.tar.gz
scummvm-rg350-db2bf22b35fa25daf0f8acf573eb30c31ab9381e.tar.bz2
scummvm-rg350-db2bf22b35fa25daf0f8acf573eb30c31ab9381e.zip
Removed 'fullscreen' option (PalmOS)
svn-id: r11656
Diffstat (limited to 'common')
-rw-r--r--common/system.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.cpp b/common/system.cpp
index feeef61763..ac7f38811b 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -49,7 +49,7 @@ static OSystem *createSystem() {
#elif defined(__GP32__) // ph0x
return OSystem_GP32_create(GFX_NORMAL, true);
#elif defined(__PALM_OS__) //chrilith
- return OSystem_PALMOS_create(gfx_mode, ConfMan.getBool("fullscreen"));
+ return OSystem_PALMOS_create(gfx_mode);
#else
/* SDL is the default driver for now */
return OSystem_SDL_create(gfx_mode);