1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Revert mistaken rename

The park file has a function of the same name and during a rename exercise this unrelated function was accidentally renamed
This commit is contained in:
duncanspumpkin
2021-09-19 07:33:09 +01:00
parent 028fb83d17
commit 75d1b9402c

View File

@@ -475,7 +475,7 @@ namespace Config
}
}
static void ReadWriteNotificationsChunk(IIniWriter* writer)
static void WriteNotificationsChunk(IIniWriter* writer)
{
auto model = &gConfigNotifications;
writer->WriteSection("notifications");
@@ -613,7 +613,7 @@ namespace Config
WriteInterface(writer.get());
WriteSound(writer.get());
WriteNetwork(writer.get());
ReadWriteNotificationsChunk(writer.get());
WriteNotificationsChunk(writer.get());
WriteFont(writer.get());
WritePlugin(writer.get());
return true;