Switch C header & Fix warnings (#702)

This commit is contained in:
Michael Flaherty
2017-10-15 10:32:01 +01:00
committed by Asher Baker
parent 36f9a8ed7a
commit 4f54df65e9
2 changed files with 2 additions and 40 deletions
+1 -1
View File
@@ -957,7 +957,7 @@ bool SDKHooks::Hook_CanBeAutobalanced()
// Only update our new ret if different from original
// (so if multiple plugins returning different answers,
// the one(s) that changed it win)
if (res != origRet)
if ((bool)res != origRet)
newRet = !origRet;
}