1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 09:14:58 +01:00

Remove argument list from zero-initializers with zero/false/nullptr value

This commit is contained in:
Hielke Morsink
2018-06-04 19:50:46 +02:00
parent a14d59028f
commit 5d0022a5cb
46 changed files with 84 additions and 87 deletions

View File

@@ -433,7 +433,7 @@ private:
const ObjectRepositoryItem * ori = nullptr;
if (object_entry_is_empty(&entry))
{
entry = { 0 };
entry = {};
continue;
}
@@ -448,7 +448,7 @@ private:
else
{
log_info("Ignoring missing STEX entry.");
entry = { 0 };
entry = {};
continue;
}
}