summaryrefslogtreecommitdiff
path: root/src/guiEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guiEngine.cpp')
-rw-r--r--src/guiEngine.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/guiEngine.cpp b/src/guiEngine.cpp
index 672a0d37f..e32d629d0 100644
--- a/src/guiEngine.cpp
+++ b/src/guiEngine.cpp
@@ -291,7 +291,7 @@ void GUIEngine::run()
else
sleep_ms(25);
- m_script->Step();
+ m_script->step();
}
}
@@ -563,7 +563,8 @@ void GUIEngine::stopSound(s32 handle)
}
/******************************************************************************/
-unsigned int GUIEngine::DoAsync(std::string serialized_fct,
+unsigned int GUIEngine::queueAsync(std::string serialized_func,
std::string serialized_params) {
- return m_script->DoAsync(serialized_fct,serialized_params);
+ return m_script->queueAsync(serialized_func, serialized_params);
}
+