diff options
-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 } |