1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Context: replace 2nd std::make_unique<Context> with CreateContext call (#10139)

This commit is contained in:
babywashbear
2019-10-29 17:41:49 +01:00
committed by Michael Steenbeek
parent d9efd64fea
commit 86844d2a57

View File

@@ -1088,7 +1088,7 @@ namespace OpenRCT2
std::unique_ptr<IContext> CreateContext()
{
return std::make_unique<Context>(CreatePlatformEnvironment(), CreateDummyAudioContext(), CreateDummyUiContext());
return CreateContext(CreatePlatformEnvironment(), CreateDummyAudioContext(), CreateDummyUiContext());
}
std::unique_ptr<IContext> CreateContext(