diff options
| author | Jonathan Gray | 2002-11-06 03:40:41 +0000 |
|---|---|---|
| committer | Jonathan Gray | 2002-11-06 03:40:41 +0000 |
| commit | b1a9e317d4d607740dbe32def6959790fd972221 (patch) | |
| tree | d3d30ba4dbdb9dd0d0e388e2fdbf0ec90702470c /common | |
| parent | fd11712eff18fb543479e9f4289c75bc337be110 (diff) | |
| download | scummvm-rg350-b1a9e317d4d607740dbe32def6959790fd972221.tar.gz scummvm-rg350-b1a9e317d4d607740dbe32def6959790fd972221.tar.bz2 scummvm-rg350-b1a9e317d4d607740dbe32def6959790fd972221.zip | |
update formating of -z output to reflect long simon game names
svn-id: r5432
Diffstat (limited to 'common')
| -rw-r--r-- | common/gameDetector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index b50bf41e88..3102c26379 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -174,8 +174,8 @@ void GameDetector::list_games() const VersionSettings *v = version_settings; char config[4] = ""; - printf("Game SCUMM ver Full Title Config\n" - "----------- ----------- ---------------------------------------------- -------\n"); + printf("Game SCUMM ver Full Title Config\n" + "------------- --------- ---------------------------------------------- -------\n"); while (v->filename && v->gamename) { if (g_config->has_domain(v->filename)) { @@ -186,10 +186,10 @@ void GameDetector::list_games() } if (v->major != 99) - printf("%-12s%d.%d.%d\t%-47s%s\n", v->filename, + printf("%-14s%d.%d.%d\t%-47s%s\n", v->filename, v->major, v->middle, v->minor, v->gamename, config); else - printf("%-12s%-7s\t%-47s%s\n", v->filename, "n/a", + printf("%-14s%-7s\t%-47s%s\n", v->filename, "n/a", v->gamename, config); v++; |
