station_cmd.c
changeset 2488 cbe3d6b60c27
parent 2469 1bfbb0dc0b75
child 2489 88827d8ae517
--- a/station_cmd.c	Tue Oct 04 17:34:50 2005 +0000
+++ b/station_cmd.c	Tue Oct 04 19:52:26 2005 +0000
@@ -1286,7 +1286,7 @@
 					 * That means we should get the first target
 					 * (NOT the default one). */
 					if (dsg->num_ranges > 0) {
-						target = &dsg->ranges[0].group;
+						target = dsg->ranges[0].group;
 					} else {
 						target = dsg->default_group;
 					}
@@ -1346,7 +1346,7 @@
 
 uint32 GetCustomStationRelocation(const StationSpec *spec, const Station *st, byte ctype)
 {
-	const RealSpriteGroup *rsg = ResolveStationSpriteGroup(&spec->spritegroup[ctype], st);
+	const RealSpriteGroup *rsg = ResolveStationSpriteGroup(spec->spritegroup[ctype], st);
 
 	if (rsg->sprites_per_set != 0) {
 		if (rsg->loading_count != 0) return rsg->loading[0];