station_gui.c
changeset 1329 a8a0d60b0a8e
parent 1323 41397685320a
child 1341 3533880da5d5
--- a/station_gui.c	Sun Feb 06 20:53:31 2005 +0000
+++ b/station_gui.c	Sun Feb 06 22:25:27 2005 +0000
@@ -317,8 +317,6 @@
 	int pos;
 	StringID str;
 	uint16 station_id;
-	byte *b;
-
 
 	station_id = (uint16)w->window_number;
 
@@ -401,6 +399,8 @@
 	} while (pos > -5 && ++i != 12);
 
 	if (IsWindowOfPrototype(w, _station_view_widgets)) {
+		char *b;
+
 		b = _userstring;
 		b[0] = 0x81;
 		b[1] = STR_000C_ACCEPTS;
@@ -408,7 +408,7 @@
 		b += 3;
 
 		for(i=0; i!=NUM_CARGO; i++) {
-			if ((b - (byte *) &_userstring) + 5 > USERSTRING_LEN - 1)
+			if ((b - _userstring) + 5 > USERSTRING_LEN - 1)
 				break;
 			if (st->goods[i].waiting_acceptance & 0x8000) {
 				b[0] = 0x81;
@@ -418,7 +418,7 @@
 			}
 		}
 
-		if (b == (byte*)&_userstring[3]) {
+		if (b == &_userstring[3]) {
 			b[0] = 0x81;
 			b[1] = STR_00D0_NOTHING;
 			b[2] = STR_00D0_NOTHING >> 8;