[Scummvm-cvs-logs] CVS: scummvm/base main.cpp,1.71,1.72

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


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

Modified Files:
	main.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: main.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/main.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- main.cpp	9 Mar 2005 22:21:57 -0000	1.71
+++ main.cpp	9 Mar 2005 23:07:30 -0000	1.72
@@ -223,8 +223,8 @@
 		// Set the user specified graphics mode (if any).
 		system.setGraphicsMode(ConfMan.get("gfx_mode").c_str());
 	
-		// GUI is (currently) always running at 320x200
-		system.initSize(320, 200);
+		// Make GUI 640 x 400
+		system.initSize(320, 200, 2);
 	system.endGFXTransaction();
 
 	





More information about the Scummvm-git-logs mailing list