aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/intern.h2
-rw-r--r--common/system.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/intern.h b/backends/intern.h
index 9d07aba0c0..953d9f86f3 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();
#ifdef _WIN32_WCE
diff --git a/common/system.cpp b/common/system.cpp
index bbede45b27..9c2a178dfa 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);
+ return OSystem_PALMOS_create();
#else
/* SDL is the default driver for now */
return OSystem_SDL_create();