diff options
author | Einar Johan Trøan Sømåen | 2012-06-26 00:41:05 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-26 00:41:05 +0200 |
commit | 37079a633591c386731c6287800a09cb093ae78b (patch) | |
tree | 5ab996372ffd14273bafb9dc87898e0f940bb358 /engines/wintermute/Base/scriptables/SxObject.cpp | |
parent | 4f1989e6b82ed493b59a06df7744c62b668b5929 (diff) | |
download | scummvm-rg350-37079a633591c386731c6287800a09cb093ae78b.tar.gz scummvm-rg350-37079a633591c386731c6287800a09cb093ae78b.tar.bz2 scummvm-rg350-37079a633591c386731c6287800a09cb093ae78b.zip |
WINTERMUTE: Rename FuncName->funcName in BNamedObject and BScriptHolder
Diffstat (limited to 'engines/wintermute/Base/scriptables/SxObject.cpp')
-rw-r--r-- | engines/wintermute/Base/scriptables/SxObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/Base/scriptables/SxObject.cpp b/engines/wintermute/Base/scriptables/SxObject.cpp index 7ebbb45132..d991085792 100644 --- a/engines/wintermute/Base/scriptables/SxObject.cpp +++ b/engines/wintermute/Base/scriptables/SxObject.cpp @@ -46,7 +46,7 @@ CBScriptable *makeSXObject(CBGame *inGame, CScStack *stack) { CSXObject::CSXObject(CBGame *inGame, CScStack *Stack): CBObject(inGame) {
int NumParams = Stack->Pop()->GetInt(0);
for (int i = 0; i < NumParams; i++) {
- AddScript(Stack->Pop()->GetString());
+ addScript(Stack->Pop()->GetString());
}
}
|