aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/resource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp
index 51ef9f3e81..bc83111d14 100644
--- a/engines/kyra/resource.cpp
+++ b/engines/kyra/resource.cpp
@@ -41,9 +41,9 @@ Resource::Resource(KyraEngine_v1 *vm) : _archiveCache(), _files(), _archiveFiles
Common::SharedPtr<Common::Archive> path(new Common::FSDirectory(ConfMan.get("path")));
Common::SharedPtr<Common::Archive> extrapath(new Common::FSDirectory(ConfMan.get("extrapath")));
+ _files.add("path", path, 4);
+ _files.add("extrapath", extrapath, 4);
_vm->_system->addSysArchivesToSearchSet(_files, 3);
- _files.add("path", path, 3);
- _files.add("extrapath", extrapath, 3);
// compressed installer archives are added at level '2',
// but that's done in Resource::reset not here
_files.add("protected", _protectedFiles, 1);