From b2def962481476a5fae92f8539e5f061022bf442 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 19 Jan 2007 11:47:48 +0000 Subject: (svn r8276) -Fix Change the signature of Swap() to be less error prone, i.e. pass the variables to be swapped by reference instead of passing pointers to the variables. Just do Swap(x, y) instead of Swap(&x, &y). This prevents accidents when the variables are pointers. --- src/oldloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/oldloader.cpp') diff --git a/src/oldloader.cpp b/src/oldloader.cpp index 50dbeeea0..5cf2973d6 100644 --- a/src/oldloader.cpp +++ b/src/oldloader.cpp @@ -310,7 +310,7 @@ static void FixOldStations(void) FOR_ALL_STATIONS(st) { /* Check if we need to swap width and height for the station */ if (st->train_tile != 0 && GetRailStationAxis(st->train_tile) != AXIS_X) { - SwapT(&st->trainst_w, &st->trainst_h); + Swap(st->trainst_w, st->trainst_h); } /* Check if there is a bus or truck station, and convert to new format */ -- cgit v1.2.3-54-g00ecf