diff options
| author | Max Horn | 2005-06-23 13:46:38 +0000 | 
|---|---|---|
| committer | Max Horn | 2005-06-23 13:46:38 +0000 | 
| commit | 2ea15e4822bf0bbbe3507340eabe94e6d6244884 (patch) | |
| tree | e3a5566395a01fa7cb90ffe6545c224358329cfe /base/gameDetector.cpp | |
| parent | f460151b0a67ee94dcd7810740844abbfe9f3051 (diff) | |
| download | scummvm-rg350-2ea15e4822bf0bbbe3507340eabe94e6d6244884.tar.gz scummvm-rg350-2ea15e4822bf0bbbe3507340eabe94e6d6244884.tar.bz2 scummvm-rg350-2ea15e4822bf0bbbe3507340eabe94e6d6244884.zip | |
Revert change from printf() to debug(1)
svn-id: r18438
Diffstat (limited to 'base/gameDetector.cpp')
| -rw-r--r-- | base/gameDetector.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index c38e4c4232..8e9bd2e660 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -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;  	}  } | 
