aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Apers2003-08-16 10:16:07 +0000
committerChris Apers2003-08-16 10:16:07 +0000
commit806ff4acb3755df6cc01a7bb700fdf88fec9cd93 (patch)
tree3330c4c3c9dbca9fc168bdcf0d10df78af978097
parent121b00a6f718f4b691c77708120083da2fedd018 (diff)
downloadscummvm-rg350-806ff4acb3755df6cc01a7bb700fdf88fec9cd93.tar.gz
scummvm-rg350-806ff4acb3755df6cc01a7bb700fdf88fec9cd93.tar.bz2
scummvm-rg350-806ff4acb3755df6cc01a7bb700fdf88fec9cd93.zip
Added fullscreen support to palmos
svn-id: r9721
-rw-r--r--backends/intern.h2
-rw-r--r--common/gameDetector.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/intern.h b/backends/intern.h
index 1b4dae170f..7b06adfe69 100644
--- a/backends/intern.h
+++ b/backends/intern.h
@@ -35,7 +35,7 @@ extern OSystem *OSystem_WINCE3_create();
extern OSystem *OSystem_X11_create();
extern OSystem *OSystem_MAC_create(int gfx_mode, bool full_screen);
extern OSystem *OSystem_GP32_create(int gfx_mode, bool full_screen); //ph0x
-extern OSystem *OSystem_PALMOS_create(int gfx_mode);
+extern OSystem *OSystem_PALMOS_create(int gfx_mode, bool full_screen);
#ifdef _WIN32_WCE
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp
index 6a06a61c98..ef71482604 100644
--- a/common/gameDetector.cpp
+++ b/common/gameDetector.cpp
@@ -753,7 +753,7 @@ OSystem *GameDetector::createSystem() {
#elif defined(__GP32__) // ph0x
return OSystem_GP32_create(GFX_NORMAL, true);
#elif defined(__PALM_OS__) //chrilith
- return OSystem_PALMOS_create(_gfx_mode);
+ return OSystem_PALMOS_create(_gfx_mode, _fullScreen);
#else
/* SDL is the default driver for now */
return OSystem_SDL_create(_gfx_mode, _fullScreen, _aspectRatio);