(svn r614) [newgrf] Some minor code fixes
authordominik
Sun, 14 Nov 2004 22:30:46 +0000
changeset 417 6a7b22f86424
parent 416 7ffd7fd0261c
child 418 df48cf02adb3
(svn r614) [newgrf] Some minor code fixes
rail_cmd.c
rail_gui.c
--- a/rail_cmd.c	Sun Nov 14 22:25:21 2004 +0000
+++ b/rail_cmd.c	Sun Nov 14 22:30:46 2004 +0000
@@ -1573,7 +1573,8 @@
 				uint32 relocation = GetCustomStationRelocation(stat, ComposeWaypointStation(ti->tile), 0);
 				int railtype=(_map3_lo[ti->tile] & 0xF);
 
-				image = cust->ground_sprite + railtype*((image<_custom_sprites_base)?TRACKTYPE_SPRITE_PITCH:1);
+				image = cust->ground_sprite;
+				image += railtype*((image<_custom_sprites_base)?TRACKTYPE_SPRITE_PITCH:1);
 				if (image & 0x8000) image = (image & 0x7FFF);
 				
 
@@ -1683,7 +1684,9 @@
 	// add 1 to get the other direction
 	cust = &stat->renderdata[2];
 
-	img = cust->ground_sprite + railtype*((img<_custom_sprites_base)?TRACKTYPE_SPRITE_PITCH:1);
+	img = cust->ground_sprite;
+	img += railtype*((img<_custom_sprites_base)?TRACKTYPE_SPRITE_PITCH:1);
+
 	if (img & 0x8000) img = (img & 0x7FFF);
 	DrawSprite(img, x, y);
 
--- a/rail_gui.c	Sun Nov 14 22:25:21 2004 +0000
+++ b/rail_gui.c	Sun Nov 14 22:30:46 2004 +0000
@@ -1109,7 +1109,7 @@
 {      WWT_PANEL,     7,   275,   340,    17,    76, 0x0, STR_WAYPOINT_GRAPHICS_TIP},
 
 {  WWT_HSCROLLBAR,    7,     1,   343,    80,    91, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
-{      WWT_LAST},
+{    WIDGETS_END},
 };
 
 static const WindowDesc _build_waypoint_desc = {