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

Fix mistake in ObjectRepository::Create

Objects that could not be loaded were being returned with a success status causing blanks in the index file.
This commit is contained in:
Ted John
2018-02-12 21:22:27 +00:00
parent 683ffcdadc
commit 928ae3b4cd

View File

@@ -111,7 +111,7 @@ public:
}
else
{
return std::make_tuple(true, ObjectRepositoryItem());
return std::make_tuple(false, ObjectRepositoryItem());
}
}