(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

View File

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