1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 01:49:10 +00:00

Change: [NewGRF] Place all 8 bits of station tile layout in var 40/41. (#12890)

This commit is contained in:
2024-09-14 21:37:40 +01:00
committed by GitHub
parent 2a5a0b0990
commit 9623c28f4d

View File

@@ -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;
}