aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/input/inputengine_script.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-18 10:52:00 +0000
committerEugene Sandulenko2010-10-12 22:51:37 +0000
commite71337861ffece83ca8fe254e411557249118d43 (patch)
tree0bb0f97aa5d3f7ce02e8d6af838e59092ae887a9 /engines/sword25/input/inputengine_script.cpp
parent596684101e3431e61dbeabeb81eee66322e15042 (diff)
downloadscummvm-rg350-e71337861ffece83ca8fe254e411557249118d43.tar.gz
scummvm-rg350-e71337861ffece83ca8fe254e411557249118d43.tar.bz2
scummvm-rg350-e71337861ffece83ca8fe254e411557249118d43.zip
SWORD25: brought CallBackRegisry class to our naming standards
svn-id: r53257
Diffstat (limited to 'engines/sword25/input/inputengine_script.cpp')
-rw-r--r--engines/sword25/input/inputengine_script.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/input/inputengine_script.cpp b/engines/sword25/input/inputengine_script.cpp
index d373cdac19..5827e88414 100644
--- a/engines/sword25/input/inputengine_script.cpp
+++ b/engines/sword25/input/inputengine_script.cpp
@@ -97,8 +97,8 @@ Common::SharedPtr<CommandCallbackClass> CommandCallbackPtr;
struct CallbackfunctionRegisterer {
CallbackfunctionRegisterer() {
- BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaCommandCB", TheCommandCallback);
- BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaCharacterCB", TheCharacterCallback);
+ CallbackRegistry::getInstance().registerCallbackFunction("LuaCommandCB", TheCommandCallback);
+ CallbackRegistry::getInstance().registerCallbackFunction("LuaCharacterCB", TheCharacterCallback);
}
};
static CallbackfunctionRegisterer Instance;