Revert change from printf() to debug(1)

svn-id: r18438
This commit is contained in:
Max Horn 2005-06-23 13:46:38 +00:00
parent f460151b0a
commit 2ea15e4822

View File

@ -594,14 +594,14 @@ bool GameDetector::detectGame() {
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;
}
}