diff options
author | James Brown | 2002-04-03 16:09:56 +0000 |
---|---|---|
committer | James Brown | 2002-04-03 16:09:56 +0000 |
commit | aa160c52c051445b94a8ff0232dba79029a433c3 (patch) | |
tree | ab8a63fc505ca85eab90a58f36c469fc433b7684 | |
parent | 8258a26aed1fe5f58709ade7935ed22b8014f6e9 (diff) | |
download | scummvm-rg350-aa160c52c051445b94a8ff0232dba79029a433c3.tar.gz scummvm-rg350-aa160c52c051445b94a8ff0232dba79029a433c3.tar.bz2 scummvm-rg350-aa160c52c051445b94a8ff0232dba79029a433c3.zip |
Fix window title.
svn-id: r3851
-rw-r--r-- | gameDetector.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gameDetector.cpp b/gameDetector.cpp index ad174502de..1a0150aeb6 100644 --- a/gameDetector.cpp +++ b/gameDetector.cpp @@ -269,9 +269,8 @@ int GameDetector::detectMain(int argc, char **argv) if (!detectGame()) { warning("Game detection failed. Using default settings"); _features = GF_DEFAULT; - } else { - _gameText = "Please choose a game"; - } + _gameText = "Please choose a game"; + } if (!_gameDataPath) { warning("No path was provided. Assuming that data file are in the current directory"); |