From f2b93b7baeaa66f5096ee326ea9c22a471ada512 Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Tue, 15 Apr 2014 15:10:30 -0400 Subject: Fix code style of async API --- src/guiEngine.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/guiEngine.cpp') 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); } + -- cgit v1.2.3