mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-19 04:53:12 +01:00
Merge pull request #15416 from Broxzier/refactor/unnecessary-else
Remove unnecessary else blocks
This commit is contained in:
@@ -414,7 +414,7 @@ private:
|
||||
_loadedObjects.resize(i + 1);
|
||||
return static_cast<int32_t>(i);
|
||||
}
|
||||
else if (_loadedObjects[i] == nullptr)
|
||||
if (_loadedObjects[i] == nullptr)
|
||||
{
|
||||
return static_cast<int32_t>(i);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user