[Scummvm-cvs-logs] CVS: scummvm/backends/gp32 gp32.cpp,1.24,1.25 gp32.h,1.24,1.25

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


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

Modified Files:
	gp32.cpp gp32.h 
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: gp32.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/gp32/gp32.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- gp32.cpp	9 Mar 2005 22:21:55 -0000	1.24
+++ gp32.cpp	9 Mar 2005 23:07:24 -0000	1.25
@@ -229,7 +229,7 @@
 const char *shortkey;
 int skindex = 0;
 
-void OSystem_GP32::initSize(uint w, uint h) {
+void OSystem_GP32::initSize(uint w, uint h, int overlayScale) {
 	/*switch (menu[MENU_SCREENPOS].index) {
 	 * case 0 : scrofsy = 239 - (240 - h)/2; break;
 	 * case 1 : scrofsy = 239; break;

Index: gp32.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/gp32/gp32.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- gp32.h	9 Mar 2005 22:21:56 -0000	1.24
+++ gp32.h	9 Mar 2005 23:07:25 -0000	1.25
@@ -88,7 +88,7 @@
 
 	// Set the size of the video bitmap.
 	// Typically, 320x200
-	void initSize(uint w, uint h);
+	void initSize(uint w, uint h, int overlayScale);
 	int16 getHeight() { return _screenHeight; } 
 	int16 getWidth() { return _screenWidth; } 
 





More information about the Scummvm-git-logs mailing list