1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Compilation fixes to latest testpaint

This commit is contained in:
Michał Janiszewski
2016-10-09 10:54:20 +02:00
committed by Ted John
parent 157a93d7a5
commit f1c6ef94da
4 changed files with 3 additions and 11 deletions

View File

@@ -227,7 +227,7 @@ bool track_paint_util_has_fence(enum edge edge, rct_xy16 position, rct_map_eleme
uint16 entranceLoc =
((position.x / 32) + offset.x) |
(((position.y / 32) + offset.y) << 8);
(((position.y / 32) + offset.y) * (1 << 8));
int entranceId = map_get_station(mapElement);