1
0
Fork 0

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

pull/12890/head
Peter Nelson 2024-08-03 18:15:09 +01:00
parent a03ddb3ccb
commit a7b426625f
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 1 deletions

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, 16, 4, std::min(15, length));
SB(retval, 20, 4, std::min(15, platforms)); SB(retval, 20, 4, std::min(15, platforms));
SB(retval, 24, 4, tile); SB(retval, 24, 8, tile);
return retval; return retval;
} }