diff options
Diffstat (limited to 'engines/saga/script.cpp')
-rw-r--r-- | engines/saga/script.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/saga/script.cpp b/engines/saga/script.cpp index a8391464fe..e369edabde 100644 --- a/engines/saga/script.cpp +++ b/engines/saga/script.cpp @@ -85,6 +85,11 @@ Script::Script(SagaEngine *vm) : _vm(vm) { error("Script::Script() resource context not found"); } + // Do nothing for SAGA2 games for now + if (_vm->isSaga2()) { + return; + } + debug(3, "Loading module LUT from resource %i", _vm->getResourceDescription()->moduleLUTResourceId); _vm->_resource->loadResource(resourceContext, _vm->getResourceDescription()->moduleLUTResourceId, resourcePointer, resourceLength); |