diff options
author | md5 | 2011-04-26 02:09:21 +0300 |
---|---|---|
committer | md5 | 2011-04-26 12:56:09 +0300 |
commit | ce704575a937d6f8b4b15af9d116c71019410748 (patch) | |
tree | f3799c4b00d355100935fa63911befe872bb84b8 /engines/sci | |
parent | b06f81b4bc63dfe3a5a7f2cb81b3e13620bc61a4 (diff) | |
download | scummvm-rg350-ce704575a937d6f8b4b15af9d116c71019410748.tar.gz scummvm-rg350-ce704575a937d6f8b4b15af9d116c71019410748.tar.bz2 scummvm-rg350-ce704575a937d6f8b4b15af9d116c71019410748.zip |
SCI: Updated the view type descriptions in the "version" console command
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 7c351c6220..60bd129efc 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -442,7 +442,7 @@ ResourceType parseResourceType(const char *resid) { } bool Console::cmdGetVersion(int argc, const char **argv) { - const char *viewTypeDesc[] = { "Unknown", "EGA", "VGA", "VGA SCI1.1", "Amiga" }; + const char *viewTypeDesc[] = { "Unknown", "EGA", "Amiga ECS 32 colors", "Amiga AGA 64 colors", "VGA", "VGA SCI1.1" }; bool hasVocab997 = g_sci->getResMan()->testResource(ResourceId(kResourceTypeVocab, VOCAB_RESOURCE_SELECTORS)) ? true : false; Common::String gameVersion = "N/A"; |