1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-21 14:53:02 +01:00

Fix build errors

This commit is contained in:
Ted John
2020-02-01 16:43:00 +00:00
parent 098348d3c3
commit 4109b2c55a
4 changed files with 7 additions and 9 deletions

View File

@@ -52,7 +52,7 @@ namespace OpenRCT2::Scripting
std::shared_ptr<ScTile> getTile(int32_t x, int32_t y)
{
auto firstElement = map_get_first_element_at(x, y);
auto firstElement = map_get_first_element_at({ x, y });
return std::make_shared<ScTile>(firstElement);
}