diff options
author | Johannes Schickel | 2011-10-06 00:26:38 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-10-06 00:29:22 +0200 |
commit | 880594eb76266dd7e87363bb49fb023b139adfab (patch) | |
tree | 5a9760cf1ab6009c889be7ca34dbd729207673e9 | |
parent | 153e66318ea28650cf1badb80d2aeb6f5706007f (diff) | |
download | scummvm-rg350-880594eb76266dd7e87363bb49fb023b139adfab.tar.gz scummvm-rg350-880594eb76266dd7e87363bb49fb023b139adfab.tar.bz2 scummvm-rg350-880594eb76266dd7e87363bb49fb023b139adfab.zip |
BASE: Add another whitespace before "Starting $gamedescription".
This was removed by accident in 59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.
-rw-r--r-- | base/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp index 930b69cfac..a93f693d8d 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -111,7 +111,7 @@ static const EnginePlugin *detectPlugin() { printf("failed\n"); warning("%s is an invalid gameid. Use the --list-games option to list supported gameid", gameid.c_str()); } else { - printf("%s\n Starting '%s'\n", plugin->getName(), game.description().c_str()); + printf("%s\n Starting '%s'\n", plugin->getName(), game.description().c_str()); } return plugin; |