diff options
author | pasky <pasky@openttd.org> | 2005-03-30 12:30:24 +0000 |
---|---|---|
committer | pasky <pasky@openttd.org> | 2005-03-30 12:30:24 +0000 |
commit | 16a64d70006b1dc2110af76fa6967eb0bfff0bd7 (patch) | |
tree | 71974b8a56e650bca4edc3cd16704079fb28f07b | |
parent | 7ff930af04edd97355f8225179fa8e97db111000 (diff) | |
download | openttd-16a64d70006b1dc2110af76fa6967eb0bfff0bd7.tar.xz |
(svn r2111) So, result is bool therefore no need for this horrible == 0 thing.
-rw-r--r-- | newgrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |