(svn r4540) - NewGRF: don't treat integer values as boolean.
authorpeter1138
Sun, 23 Apr 2006 11:13:06 +0000
changeset 3635 59265706435c
parent 3634 fba43afa3d38
child 3636 d87b21df2944
(svn r4540) - NewGRF: don't treat integer values as boolean.
newgrf.c
--- a/newgrf.c	Sun Apr 23 10:50:09 2006 +0000
+++ b/newgrf.c	Sun Apr 23 11:13:06 2006 +0000
@@ -865,7 +865,7 @@
 					int seq_count = 0;
 
 					dts->ground_sprite = sdts->ground_sprite;
-					if (!dts->ground_sprite) {
+					if (dts->ground_sprite == 0) {
 						static const DrawTileSeqStruct empty = {0x80, 0, 0, 0, 0, 0, 0};
 						dts->seq = ∅
 						continue;
@@ -1452,7 +1452,7 @@
 			byte num_loading = grf_load_byte(&buf);
 			uint i;
 
-			if (!_cur_grffile->spriteset_start) {
+			if (_cur_grffile->spriteset_start == 0) {
 				grfmsg(GMS_ERROR, "NewSpriteGroup: No sprite set to work on! Skipping.");
 				return;
 			}
@@ -1611,7 +1611,7 @@
 	// 03 00 01 19 01 00 00 00 00 - this is missing one 00 at the end,
 	// what should we exactly do with that? --pasky
 
-	if (!_cur_grffile->spriteset_start || !_cur_grffile->spritegroups) {
+	if (_cur_grffile->spriteset_start == 0 || _cur_grffile->spritegroups == 0) {
 		grfmsg(GMS_WARN, "VehicleMapSpriteGroup: No sprite set to work on! Skipping.");
 		return;
 	}