diff options
-rw-r--r-- | backends/PalmOS/Src/palmgfx.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/backends/PalmOS/Src/palmgfx.cpp b/backends/PalmOS/Src/palmgfx.cpp index 1761d17b91..66b4aff172 100644 --- a/backends/PalmOS/Src/palmgfx.cpp +++ b/backends/PalmOS/Src/palmgfx.cpp @@ -27,7 +27,7 @@ #include "common/config-manager.h" #include <BmpGlue.h> -#include "start.h" // appFileCreator +#include "palmdefs.h" #include "features.h" #include "globals.h" @@ -36,6 +36,7 @@ #include "i_zodiac.h" #endif +#include "init_arm.h" #include "arm/native.h" #include "arm/macros.h" @@ -188,8 +189,8 @@ void OSystem_PALMOS::load_gfx_mode() { #endif if (std) { // 640x480 only on Zodiac and in GFX_WIDE mode - if (_screenHeight == 480) - error("640x480 game can only be run on Zodiac in wide mode."); + if (_screenWidth == 640) + error("640x480 games can only be run on Zodiac in wide mode."); // only for 320x200 games if (!(_screenWidth == 320 && _screenHeight == 200)) { |