aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/threads/scriptthread.cpp
diff options
context:
space:
mode:
authorjohndoe1232015-11-19 13:16:22 +0100
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commit61a0b5badbd7098e0b96355a428408654b3705df (patch)
treeab3ca376ccc5cca11508cd9918a445c2ef8f9bde /engines/illusions/threads/scriptthread.cpp
parent41978f466d423e9b5f3c3980666c1beb4219b937 (diff)
downloadscummvm-rg350-61a0b5badbd7098e0b96355a428408654b3705df.tar.gz
scummvm-rg350-61a0b5badbd7098e0b96355a428408654b3705df.tar.bz2
scummvm-rg350-61a0b5badbd7098e0b96355a428408654b3705df.zip
ILLUSIONS: Rename tag -> sceneId
Diffstat (limited to 'engines/illusions/threads/scriptthread.cpp')
-rw-r--r--engines/illusions/threads/scriptthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/illusions/threads/scriptthread.cpp b/engines/illusions/threads/scriptthread.cpp
index f8bbae9cb4..8fe3cddbff 100644
--- a/engines/illusions/threads/scriptthread.cpp
+++ b/engines/illusions/threads/scriptthread.cpp
@@ -33,7 +33,7 @@ ScriptThread::ScriptThread(IllusionsEngine *vm, uint32 threadId, uint32 callingT
: Thread(vm, threadId, callingThreadId, notifyFlags), _scriptCodeIp(scriptCodeIp), _value8(value8),
_valueC(valueC), _value10(value10), _sequenceStalled(0) {
_type = kTTScriptThread;
- _tag = _vm->getCurrentScene();
+ _sceneId = _vm->getCurrentScene();
}
int ScriptThread::onUpdate() {