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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user