diff options
author | Einar Johan Trøan Sømåen | 2012-07-08 22:18:18 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-07-08 22:18:18 +0200 |
commit | 595f140cd82b06346dbfa668cdfa672fc402a9a9 (patch) | |
tree | da8bfe6f3641c6d4a13d5692134a606b4ec9b0a2 /engines/wintermute/Ad/AdNodeState.cpp | |
parent | 5f7b45de34d4f34c543d47e1feead84c79654965 (diff) | |
download | scummvm-rg350-595f140cd82b06346dbfa668cdfa672fc402a9a9.tar.gz scummvm-rg350-595f140cd82b06346dbfa668cdfa672fc402a9a9.tar.bz2 scummvm-rg350-595f140cd82b06346dbfa668cdfa672fc402a9a9.zip |
WINTERMUTE: Rename FuncName/VarName -> funcName/varName in BStringTable
Diffstat (limited to 'engines/wintermute/Ad/AdNodeState.cpp')
-rw-r--r-- | engines/wintermute/Ad/AdNodeState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/Ad/AdNodeState.cpp b/engines/wintermute/Ad/AdNodeState.cpp index 266adc9378..954c12c9fc 100644 --- a/engines/wintermute/Ad/AdNodeState.cpp +++ b/engines/wintermute/Ad/AdNodeState.cpp @@ -115,7 +115,7 @@ void CAdNodeState::setCaption(const char *caption, int caseVal) { _caption[caseVal- 1] = new char[strlen(caption) + 1];
if (_caption[caseVal- 1]) {
strcpy(_caption[caseVal- 1], caption);
- Game->_stringTable->Expand(&_caption[caseVal- 1]);
+ Game->_stringTable->expand(&_caption[caseVal- 1]);
}
}
|