(svn r2111) So, result is bool therefore no need for this horrible == 0 thing.

This commit is contained in:
pasky 2005-03-30 12:30:24 +00:00
parent 7ff930af04
commit 16a64d7000
1 changed files with 1 additions and 1 deletions

View File

@ -1691,7 +1691,7 @@ static void SkipIf(byte *buf, int len)
return;
}
if (result == 0) {
if (!result) {
grfmsg(GMS_NOTICE, "Not skipping sprites, test was false.");
return;
}