aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/resource.cpp4
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;
}