diff options
author | Martin Kiewitz | 2010-01-18 23:07:56 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-18 23:07:56 +0000 |
commit | 8ff407e80aac35f1fc62a74881bc123aa3c93d07 (patch) | |
tree | 1063706f3a53cf8872e9cce7acb946540d7bfefa | |
parent | 3a34628e9e43985fe6a65d383eeee1b7127ab279 (diff) | |
download | scummvm-rg350-8ff407e80aac35f1fc62a74881bc123aa3c93d07.tar.gz scummvm-rg350-8ff407e80aac35f1fc62a74881bc123aa3c93d07.tar.bz2 scummvm-rg350-8ff407e80aac35f1fc62a74881bc123aa3c93d07.zip |
SCI: added comment about resource.p01 etc. (including possible TODO)
svn-id: r47364
-rw-r--r-- | engines/sci/resource.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 6653532265..7a09041287 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -873,6 +873,10 @@ ResourceManager::ResVersion ResourceManager::detectVolVersion() { } if (!fileStream) { error("Failed to open volume file - if you got resource.p01/resource.p02/etc. files, merge them together into resource.000"); + // resource.p01/resource.p02/etc. may be there when directly copying the files from the original floppies + // the sierra installer would merge those together (perhaps we could do this as well?) + // possible TODO + // example for such game: Laura Bow 2 return kResVersionUnknown; } |