diff options
-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;
}
|