diff options
author | Jonathan Gray | 2003-09-03 10:26:09 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-09-03 10:26:09 +0000 |
commit | 0fb53e1f47dfabf6f1061b89c451725ae7bd8044 (patch) | |
tree | c30015391c0c39a5418e0d2935e21481638e448b | |
parent | 018d2ee6b1ee81eb7867add2b130b7602bba4f7c (diff) | |
download | scummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.tar.gz scummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.tar.bz2 scummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.zip |
prepare for larger target names
svn-id: r9986
-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 db254433f3..2b705c2a8a 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -349,12 +349,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%-57s%s\n", v->filename, v->gamename, config); + printf("%-17s%-56s%s\n", v->filename, v->gamename, config); v++; } |