[Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src palm.h,1.34,1.35 palmgfx.cpp,1.7,1.8

Eugene Sandulenko sev at users.sourceforge.net
Wed Mar 9 15:09:10 CET 2005


Update of /cvsroot/scummvm/scummvm/backends/PalmOS/Src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8691/backends/PalmOS/Src

Modified Files:
	palm.h palmgfx.cpp 
Log Message:
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.


Index: palm.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/palm.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- palm.h	1 Jan 2005 16:08:44 -0000	1.34
+++ palm.h	9 Mar 2005 23:07:22 -0000	1.35
@@ -82,7 +82,7 @@
 
 	// 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

Index: palmgfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/palmgfx.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- palmgfx.cpp	9 Feb 2005 12:17:34 -0000	1.7
+++ palmgfx.cpp	9 Mar 2005 23:07:23 -0000	1.8
@@ -78,7 +78,7 @@
 	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





More information about the Scummvm-git-logs mailing list