diff options
author | Chris Apers | 2003-12-15 15:13:36 +0000 |
---|---|---|
committer | Chris Apers | 2003-12-15 15:13:36 +0000 |
commit | db2bf22b35fa25daf0f8acf573eb30c31ab9381e (patch) | |
tree | 89a793556fd2860dfc9ec07fc833bc84062c57ac /common | |
parent | de1a8fdafaba42bcb3affa5f87cfcac4d681e640 (diff) | |
download | scummvm-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.cpp | 2 |
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); |