diff options
author | Martin Kiewitz | 2015-06-04 22:29:29 +0200 |
---|---|---|
committer | Martin Kiewitz | 2015-06-04 22:29:29 +0200 |
commit | 74d3121f9d5a51b6d81a06671d0c7124e3a2420e (patch) | |
tree | a189a6bb475aa9b1aea8552a3477cb2de03e8848 /engines | |
parent | 16d124b2317a61404ba4371bc7609a2770c03f3d (diff) | |
download | scummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.tar.gz scummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.tar.bz2 scummvm-rg350-74d3121f9d5a51b6d81a06671d0c7124e3a2420e.zip |
SHERLOCK: add comments about 3DO resources
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/resources.cpp | 12 |
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 } |