Fix ride_type_has_flag signature for testpaint

This commit is contained in:
Michał Janiszewski
2019-02-10 00:32:16 +01:00
parent 9da931d5e7
commit 5faf2d393b

View File

@@ -175,7 +175,7 @@ TileElement* map_get_first_element_at(int x, int y)
return gTileElementTilePointers[x + y * 256];
}
bool ride_type_has_flag(int rideType, int flag)
bool ride_type_has_flag(int rideType, uint32_t flag)
{
return (RideProperties[rideType].flags & flag) != 0;
}