aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kiewitz2015-06-04 22:29:29 +0200
committerMartin Kiewitz2015-06-04 22:29:29 +0200
commit74d3121f9d5a51b6d81a06671d0c7124e3a2420e (patch)
treea189a6bb475aa9b1aea8552a3477cb2de03e8848
parent16d124b2317a61404ba4371bc7609a2770c03f3d (diff)
downloadscummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.tar.gz
scummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.tar.bz2
scummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.zip
SHERLOCK: add comments about 3DO resources
-rw-r--r--engines/sherlock/resources.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/engines/sherlock/resources.cpp b/engines/sherlock/resources.cpp
index ab9efce24d..0a8470639c 100644
--- a/engines/sherlock/resources.cpp
+++ b/engines/sherlock/resources.cpp
@@ -100,8 +100,18 @@ Resources::Resources(SherlockEngine *vm) : _vm(vm), _cache(vm) {
}
} else {
// 3DO
+
+ // ITEM data from VGS.LIB is in ITEM.LIB
+ // resources themselves start with width and height as UINT16BE
+ // but after that they are different. Don't seem to be raw data
+ //addToCache("item.lib");
+
+ // talk.lib - resources themselves seem to be the same, although a few texts were slightly changed
addToCache("talk.lib");
- addToCache("chess.txt"); // instead of journal.txt
+
+ // chess.txt - instead of journal.txt
+ addToCache("chess.txt");
+
// remaining files are missing
// portraits were replaced with FMV
}