aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-06-06 23:57:59 +0000
committerMax Horn2003-06-06 23:57:59 +0000
commit9f4d675eba509d0a1343215a1928f54ff5c58e6b (patch)
treee644b2068adeda382d86667cd2e824f61aa5e941 /common
parent00b53b5e81730bc9f952307390b29a652a7309db (diff)
downloadscummvm-rg350-9f4d675eba509d0a1343215a1928f54ff5c58e6b.tar.gz
scummvm-rg350-9f4d675eba509d0a1343215a1928f54ff5c58e6b.tar.bz2
scummvm-rg350-9f4d675eba509d0a1343215a1928f54ff5c58e6b.zip
remove version column
svn-id: r8368
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 aa5225b0ff..2d656e19c7 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 SCUMM ver 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%-7s\t%-47s%s\n", v->filename, "n/a", v->gamename, config);
+ printf("%-14s\t%-47s%s\n", v->filename, v->gamename, config);
v++;
}