aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/resource.cpp')
-rw-r--r--engines/sci/resource.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 71624c4509..8027d8d1db 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -70,19 +70,20 @@ const char *sci_error_types[] = {
"SCI version is unsupported"
};
-// These are the 18 resource types supported by SCI1
+// These are the 20 resource types supported by SCI1.1
const char *resourceTypeNames[] = {
"view", "pic", "script", "text", "sound",
"memory", "vocab", "font", "cursor",
"patch", "bitmap", "palette", "cdaudio",
- "audio", "sync", "message", "map", "heap"
+ "audio", "sync", "message", "map", "heap",
+ "audio36", "sync36"
};
const char *resourceTypeSuffixes[] = {
"v56", "p56", "scr", "tex", "snd",
" ", "voc", "fon", "cur", "pat",
"bit", "pal", "cda", "aud", "syn",
- "msg", "map", "hep"
+ "msg", "map", "hep", "aud", "syn"
};
const char *getResourceTypeName(ResourceType restype) {