mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-03 07:59:38 +00:00
WINTERMUTE: Rename VarName->varName in BScriptable
This commit is contained in:
parent
f1319eb4fc
commit
38f8ad562a
@ -150,9 +150,9 @@ HRESULT CBScriptable::persist(CBPersistMgr *persistMgr) {
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
int CBScriptable::scCompare(CBScriptable *Val) {
|
||||
if (this < Val) return -1;
|
||||
else if (this > Val) return 1;
|
||||
int CBScriptable::scCompare(CBScriptable *val) {
|
||||
if (this < val) return -1;
|
||||
else if (this > val) return 1;
|
||||
else return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user