diff options
author | Eugene Sandulenko | 2007-04-21 21:23:26 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-04-21 21:23:26 +0000 |
commit | b1e79b9253d17ff9ea6d996b4416569c658e9cc8 (patch) | |
tree | 550b9ddbdab983bb942ac401ad23261ced1ebd27 | |
parent | 8d7d61f1f67a50f70e14e85b8c05a2aa4a4a6cb9 (diff) | |
download | scummvm-rg350-b1e79b9253d17ff9ea6d996b4416569c658e9cc8.tar.gz scummvm-rg350-b1e79b9253d17ff9ea6d996b4416569c658e9cc8.tar.bz2 scummvm-rg350-b1e79b9253d17ff9ea6d996b4416569c658e9cc8.zip |
More meaningful error message
svn-id: r26557
-rw-r--r-- | engines/saga/saga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/saga.cpp b/engines/saga/saga.cpp index 6094bc4387..264863d043 100644 --- a/engines/saga/saga.cpp +++ b/engines/saga/saga.cpp @@ -156,7 +156,7 @@ int SagaEngine::init() { // Detect game and open resource files if (!initGame()) { - GUIErrorMessage("No valid games were found in the specified directory."); + GUIErrorMessage("Error loading game resources."); return FAILURE; } |