diff options
author | Lars Skovlund | 2010-06-18 10:49:26 +0000 |
---|---|---|
committer | Lars Skovlund | 2010-06-18 10:49:26 +0000 |
commit | 8ade66ba132a9ca929838722aa67857666871c6f (patch) | |
tree | c1a71e376475ddbf0ad90199d0713b3ed25bc414 | |
parent | 5a95c2a652e5043673dff16383f3114247059d46 (diff) | |
download | scummvm-rg350-8ade66ba132a9ca929838722aa67857666871c6f.tar.gz scummvm-rg350-8ade66ba132a9ca929838722aa67857666871c6f.tar.bz2 scummvm-rg350-8ade66ba132a9ca929838722aa67857666871c6f.zip |
SCI: Unbreak diskdump console command, maybe others
svn-id: r50014
-rw-r--r-- | engines/sci/resource.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 1639b954b9..6e739a5247 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -114,7 +114,7 @@ static const char *resourceTypeNames[] = { "memory", "vocab", "font", "cursor", "patch", "bitmap", "palette", "cdaudio", "audio", "sync", "message", "map", "heap", - "audio36", "sync36", "", "", "robot" + "audio36", "sync36", "", "", "robot", "vmd" }; static const char *resourceTypeSuffixes[] = { @@ -122,7 +122,7 @@ static const char *resourceTypeSuffixes[] = { " ", "voc", "fon", "cur", "pat", "bit", "pal", "cda", "aud", "syn", "msg", "map", "hep", "aud", "syn", - "trn", " ", "rbt" + "trn", " ", "rbt", "vmd" }; const char *getResourceTypeName(ResourceType restype) { |