From 9623c28f4de0eab9e007d80f868c5a720ed3809f Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sat, 14 Sep 2024 21:37:40 +0100 Subject: [PATCH] Change: [NewGRF] Place all 8 bits of station tile layout in var 40/41. (#12890) --- src/newgrf_station.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp index bef7e61c5a..8a307b2640 100644 --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -125,7 +125,7 @@ uint32_t GetPlatformInfo(Axis axis, uint8_t tile, int platforms, int length, int } SB(retval, 16, 4, std::min(15, length)); SB(retval, 20, 4, std::min(15, platforms)); - SB(retval, 24, 4, tile); + SB(retval, 24, 8, tile); return retval; }