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:
committed by
Ted John
parent
157a93d7a5
commit
f1c6ef94da
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user