1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 00:49:11 +00:00

(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;
}
if (result == 0) {
if (!result) {
grfmsg(GMS_NOTICE, "Not skipping sprites, test was false.");
return;
}