diff options
author | Einar Johan Trøan Sømåen | 2012-07-08 20:31:06 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-07-08 20:31:06 +0200 |
commit | 38f8ad562a017c75f50daf0841f311c2e74b6a3a (patch) | |
tree | 1e63316f4aaa3f9641d26fffab7f24c35ac490ad /engines/wintermute/Base | |
parent | f1319eb4fc89acfabda791524cd02a77ac7e25f1 (diff) | |
download | scummvm-rg350-38f8ad562a017c75f50daf0841f311c2e74b6a3a.tar.gz scummvm-rg350-38f8ad562a017c75f50daf0841f311c2e74b6a3a.tar.bz2 scummvm-rg350-38f8ad562a017c75f50daf0841f311c2e74b6a3a.zip |
WINTERMUTE: Rename VarName->varName in BScriptable
Diffstat (limited to 'engines/wintermute/Base')
-rw-r--r-- | engines/wintermute/Base/BScriptable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/BScriptable.cpp b/engines/wintermute/Base/BScriptable.cpp index ea6aca21c2..16470ebf3c 100644 --- a/engines/wintermute/Base/BScriptable.cpp +++ b/engines/wintermute/Base/BScriptable.cpp @@ -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;
}
|