[Scummvm-cvs-logs] CVS: scummvm/backends/null null.cpp,1.21,1.22

Eugene Sandulenko sev at users.sourceforge.net
Wed Mar 9 15:08:22 CET 2005


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

Modified Files:
	null.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: null.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/null/null.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- null.cpp	11 Jan 2005 13:24:59 -0000	1.21
+++ null.cpp	9 Mar 2005 23:07:26 -0000	1.22
@@ -45,7 +45,7 @@
 	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 @@
 	return -1;
 }
 
-void OSystem_NULL::initSize(uint width, uint height)
+void OSystem_NULL::initSize(uint width, uint height, int overlayScale)
 {
 }
 





More information about the Scummvm-git-logs mailing list