1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Add missing return statement for the nullptr path

This commit is contained in:
ZehMatt
2021-07-30 02:21:31 +03:00
parent aeb68008fa
commit b111e104e3

View File

@@ -156,6 +156,7 @@ public:
if (tileElement == nullptr)
{
Close();
return;
}
auto bannerCoords = banner->position.ToCoordsXY();