aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base/gameDetector.cpp6
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;
}
}