aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 8a72b423e1..728b84cadf 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -589,10 +589,14 @@ bool Scumm::isScriptInUse(int script) {
void Scumm::runHook(int i) {
- int tmp[16];
- tmp[0] = i;
- if (VAR(VAR_HOOK_SCRIPT)) {
- runScript(VAR(VAR_HOOK_SCRIPT), 0, 0, tmp);
+ if (_features & GF_AFTER_V2) {
+ // FIXME - TODO
+ } else {
+ int tmp[16];
+ tmp[0] = i;
+ if (VAR(VAR_HOOK_SCRIPT)) {
+ runScript(VAR(VAR_HOOK_SCRIPT), 0, 0, tmp);
+ }
}
}