summaryrefslogtreecommitdiff
path: root/src/guiEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guiEngine.cpp')
-rw-r--r--src/guiEngine.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/guiEngine.cpp b/src/guiEngine.cpp
index d5f528f3b..7acc00ef1 100644
--- a/src/guiEngine.cpp
+++ b/src/guiEngine.cpp
@@ -286,6 +286,8 @@ void GUIEngine::run()
cloudPostProcess();
else
sleep_ms(25);
+
+ m_script->Step();
}
}
@@ -576,3 +578,9 @@ void GUIEngine::stopSound(s32 handle)
{
m_sound_manager->stopSound(handle);
}
+
+/******************************************************************************/
+unsigned int GUIEngine::DoAsync(std::string serialized_fct,
+ std::string serialized_params) {
+ return m_script->DoAsync(serialized_fct,serialized_params);
+}