[Scummvm-cvs-logs] CVS: scummvm/base gameDetector.cpp,1.118,1.119

Max Horn fingolfin at users.sourceforge.net
Thu Jun 23 06:49:01 CEST 2005


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

Modified Files:
	gameDetector.cpp 
Log Message:
Revert change from printf() to debug(1)

Index: gameDetector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/gameDetector.cpp,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -d -r1.118 -r1.119
--- gameDetector.cpp	21 Jun 2005 22:08:13 -0000	1.118
+++ gameDetector.cpp	23 Jun 2005 13:46:38 -0000	1.119
@@ -594,14 +594,14 @@
 	else
 		realGame = _targetName;
 
-	debug(1, "Looking for %s\n", realGame.c_str());
+	printf("Looking for %s\n", realGame.c_str());
 	_game = findGame(realGame, &_plugin);
 
 	if (_game.name) {
-		debug(1, "Trying to start game '%s'\n", _game.description);
+		printf("Trying to start game '%s'\n", _game.description);
 		return true;
 	} else {
-		debug(1, "Failed game detection\n");
+		printf("Failed game detection\n");
 		return false;
 	}
 }





More information about the Scummvm-git-logs mailing list