[Scummvm-cvs-logs] CVS: scummvm/common gameDetector.cpp,1.26,1.27

Jonathan Gray khalek at users.sourceforge.net
Tue Nov 5 19:41:05 CET 2002


Update of /cvsroot/scummvm/scummvm/common
In directory usw-pr-cvs1:/tmp/cvs-serv6832

Modified Files:
	gameDetector.cpp 
Log Message:
update formating of -z output to reflect long simon game names

Index: gameDetector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/gameDetector.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- gameDetector.cpp	5 Nov 2002 10:36:30 -0000	1.26
+++ gameDetector.cpp	6 Nov 2002 03:40:41 -0000	1.27
@@ -174,8 +174,8 @@
 	const VersionSettings *v = version_settings;
 	char config[4] = "";
 
-	printf("Game        SCUMM ver   Full Title                                     Config\n"
-	       "----------- ----------- ---------------------------------------------- -------\n");
+	printf("Game          SCUMM ver Full Title                                     Config\n"
+	       "------------- --------- ---------------------------------------------- -------\n");
 
 	while (v->filename && v->gamename) {
 		if (g_config->has_domain(v->filename)) {
@@ -186,10 +186,10 @@
 		}
 
 		if (v->major != 99)
-			printf("%-12s%d.%d.%d\t%-47s%s\n", v->filename,
+			printf("%-14s%d.%d.%d\t%-47s%s\n", v->filename,
 		     	  v->major, v->middle, v->minor, v->gamename, config);
 		else
-			printf("%-12s%-7s\t%-47s%s\n", v->filename, "n/a", 
+			printf("%-14s%-7s\t%-47s%s\n", v->filename, "n/a", 
 					v->gamename, config);
 
 		v++;





More information about the Scummvm-git-logs mailing list