1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 00:34:46 +01:00

Fix the build

This commit is contained in:
Ted John
2018-12-16 23:08:22 +00:00
parent 3040ac9a04
commit 4174b8adcc
2 changed files with 12 additions and 21 deletions

View File

@@ -335,13 +335,10 @@ namespace OpenRCT2
BeginArray();
for (const auto& spawn : gPeepSpawns)
{
if (!gPeepSpawns->isNull())
{
WriteValue(spawn.x);
WriteValue(spawn.y);
WriteValue(spawn.z);
WriteValue(spawn.direction);
}
WriteValue(spawn.x);
WriteValue(spawn.y);
WriteValue(spawn.z);
WriteValue(spawn.direction);
NextArrayElement();
}
EndArray();
@@ -561,6 +558,8 @@ namespace OpenRCT2
// Initial cash will eventually be removed
gInitialCash = gCash;
String::Set(gS6Info.name, sizeof(gS6Info.name), gScenarioName.c_str());
String::Set(gS6Info.details, sizeof(gS6Info.details), gScenarioName.c_str());
}
private:
@@ -645,11 +644,9 @@ namespace OpenRCT2
{
ReadValue<uint32_t>();
String::Set(gScenarioName, sizeof(gScenarioName), ReadStringTable().c_str());
String::Set(gS6Info.name, sizeof(gS6Info.name), gScenarioName);
gScenarioName = ReadStringTable();
ReadStringTable(); // park name
String::Set(gScenarioDetails, sizeof(gScenarioDetails), ReadStringTable().c_str());
String::Set(gS6Info.details, sizeof(gS6Info.details), gScenarioName);
gScenarioDetails = ReadStringTable();
gScenarioObjectiveType = ReadValue<uint32_t>();
gScenarioObjectiveYear = ReadValue<uint16_t>(); // year
@@ -664,7 +661,7 @@ namespace OpenRCT2
gScenarioParkRatingWarningDays = ReadValue<uint16_t>();
gScenarioCompletedCompanyValue = ReadValue<money32>();
String::Set(gScenarioCompletedBy, sizeof(gScenarioCompletedBy), ReadString().c_str());
gScenarioCompletedBy = ReadString();
EndChunk();
}
else