[Scummvm-cvs-logs] CVS: scummvm/backends/morphos morphos.cpp,1.43,1.44 morphos.h,1.29,1.30

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


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

Modified Files:
	morphos.cpp morphos.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: morphos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/morphos/morphos.cpp,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- morphos.cpp	5 Dec 2004 17:42:16 -0000	1.43
+++ morphos.cpp	9 Mar 2005 23:07:25 -0000	1.44
@@ -1455,7 +1455,7 @@
 	}
 }
 
-void OSystem_MorphOS::initSize(uint w, uint h)
+void OSystem_MorphOS::initSize(uint w, uint h, int overlayScale)
 {
 	if (ScummBuffer)
 	{

Index: morphos.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/morphos/morphos.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- morphos.h	28 Sep 2004 20:19:22 -0000	1.29
+++ morphos.h	9 Mar 2005 23:07:26 -0000	1.30
@@ -47,7 +47,7 @@
 
 		// Set the size of the video bitmap.
 		// Typically, 320x200
-		virtual void initSize(uint w, uint h);
+		virtual void initSize(uint w, uint h, int overlayScale);
 
 		// Draw a bitmap to screen.
 		// The screen will not be updated to reflect the new bitmap





More information about the Scummvm-git-logs mailing list