aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/UI/UIWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/UI/UIWindow.cpp')
-rw-r--r--engines/wintermute/UI/UIWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/UI/UIWindow.cpp b/engines/wintermute/UI/UIWindow.cpp
index 0c007f94fb..5d1bf05bfb 100644
--- a/engines/wintermute/UI/UIWindow.cpp
+++ b/engines/wintermute/UI/UIWindow.cpp
@@ -791,7 +791,7 @@ HRESULT CUIWindow::scCallMethod(CScScript *script, CScStack *stack, CScStack *th
else if (strcmp(name, "GoExclusive") == 0) {
stack->correctParams(0);
goExclusive();
- script->WaitFor(this);
+ script->waitFor(this);
stack->pushNULL();
return S_OK;
}
@@ -802,7 +802,7 @@ HRESULT CUIWindow::scCallMethod(CScScript *script, CScStack *stack, CScStack *th
else if (strcmp(name, "GoSystemExclusive") == 0) {
stack->correctParams(0);
goSystemExclusive();
- script->WaitFor(this);
+ script->waitFor(this);
stack->pushNULL();
return S_OK;
}