aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJonathan Gray2003-09-03 10:26:09 +0000
committerJonathan Gray2003-09-03 10:26:09 +0000
commit0fb53e1f47dfabf6f1061b89c451725ae7bd8044 (patch)
treec30015391c0c39a5418e0d2935e21481638e448b /common
parent018d2ee6b1ee81eb7867add2b130b7602bba4f7c (diff)
downloadscummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.tar.gz
scummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.tar.bz2
scummvm-rg350-0fb53e1f47dfabf6f1061b89c451725ae7bd8044.zip
prepare for larger target names
svn-id: r9986
Diffstat (limited to 'common')
-rw-r--r--common/gameDetector.cpp6
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++;
}