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/null/null.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/null') diff --git a/backends/null/null.cpp b/backends/null/null.cpp index 3c5b0bd5b0..a85c83d8be 100644 --- a/backends/null/null.cpp +++ b/backends/null/null.cpp @@ -45,7 +45,7 @@ public: virtual bool setGraphicsMode(int mode); bool setGraphicsMode(const char *name); virtual int getGraphicsMode() const; - virtual void initSize(uint width, uint height); + virtual void initSize(uint width, uint height, int overlayScale); virtual int16 getHeight(); virtual int16 getWidth(); virtual void setPalette(const byte *colors, uint start, uint num); @@ -153,7 +153,7 @@ int OSystem_NULL::getGraphicsMode() const return -1; } -void OSystem_NULL::initSize(uint width, uint height) +void OSystem_NULL::initSize(uint width, uint height, int overlayScale) { } -- cgit v1.2.3