From a7b426625fe82ba9d0b02df081d2e4af7f5310e7 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sat, 3 Aug 2024 18:15:09 +0100 Subject: [PATCH] Change: [NewGRF] Place all 8 bits of station tile layout in var 40/41. --- 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; }