diff options
author | Jonathan Gray | 2003-06-13 10:13:41 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-06-13 10:13:41 +0000 |
commit | 6bce6b4069cb9ca92d7837be44a5a7751e6ad878 (patch) | |
tree | dd7e5146a034b2f7c695c7e66ca6c992c501356d | |
parent | 77aa2fe000ef28f05480ad6f927fd17fc61156f9 (diff) | |
download | scummvm-rg350-6bce6b4069cb9ca92d7837be44a5a7751e6ad878.tar.gz scummvm-rg350-6bce6b4069cb9ca92d7837be44a5a7751e6ad878.tar.bz2 scummvm-rg350-6bce6b4069cb9ca92d7837be44a5a7751e6ad878.zip |
make -z output align nicely
svn-id: r8459
-rw-r--r-- | common/gameDetector.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index e01551fa64..f21240b1ab 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -291,12 +291,12 @@ void GameDetector::list_games() { const VersionSettings *v = version_settings; const char *config; - printf("Game Full Title Config\n" - "------------- ---------------------------------------------- -------\n"); + printf("Game Full Title Config\n" + "------------- ------------------------------------------------------- -------\n"); while (v->filename && v->gamename) { config = (g_config->has_domain(v->filename)) ? "Yes" : ""; - printf("%-14s\t%-47s%s\n", v->filename, v->gamename, config); + printf("%-14s%-57s%s\n", v->filename, v->gamename, config); v++; } |