From 7bb53f3bf10acf3b97d635b75e50b3c51b2ff862 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 9 Mar 2005 23:07:32 +0000 Subject: Patch #1013937 "OSystem layer with bigger resolution". Now you will always get at least 640x400 window. And finally we have means of implementing nice looking GUI. Also updated all backends. If your backend has ability to run with 640x400 or 640x480 resolution then read patch tracker item to find out details. Other port maintainers shouldn't worry, as this patch doesn't affect them, they still get their 320x200. svn-id: r17055 --- backends/PalmOS/Src/palm.h | 2 +- backends/PalmOS/Src/palmgfx.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/PalmOS') diff --git a/backends/PalmOS/Src/palm.h b/backends/PalmOS/Src/palm.h index 996c49a912..a46ea7e318 100644 --- a/backends/PalmOS/Src/palm.h +++ b/backends/PalmOS/Src/palm.h @@ -82,7 +82,7 @@ public: // Set the size of the video bitmap. // Typically, 320x200 - void initSize(uint w, uint h); + void initSize(uint w, uint h, int overlayScale); // Draw a bitmap to screen. // The screen will not be updated to reflect the new bitmap diff --git a/backends/PalmOS/Src/palmgfx.cpp b/backends/PalmOS/Src/palmgfx.cpp index 4abf13e061..594d6645a7 100644 --- a/backends/PalmOS/Src/palmgfx.cpp +++ b/backends/PalmOS/Src/palmgfx.cpp @@ -78,7 +78,7 @@ bool OSystem_PALMOS::setGraphicsMode(int mode) { return true; } -void OSystem_PALMOS::initSize(uint w, uint h) { +void OSystem_PALMOS::initSize(uint w, uint h, int overlayScale) { _screenWidth = w; _screenHeight = h; _offScreenPitch = gVars->screenPitch; // direct screen / flipping use this, reset later if buffered -- cgit v1.2.3