mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 20:43:04 +01:00
Remove the use of shared_ptr for the Context (#24404)
* Replace shared_ptr with unique_ptr for Context systems, return refs * Fix all the users * clang-format fix * Fix linux builds
This commit is contained in:
@@ -508,8 +508,8 @@ namespace OpenRCT2::ObjectFactory
|
||||
|
||||
static bool isUsingClassic()
|
||||
{
|
||||
auto env = OpenRCT2::GetContext()->GetPlatformEnvironment();
|
||||
return env->IsUsingClassic();
|
||||
auto& env = OpenRCT2::GetContext()->GetPlatformEnvironment();
|
||||
return env.IsUsingClassic();
|
||||
}
|
||||
|
||||
std::unique_ptr<Object> CreateObjectFromJson(
|
||||
|
||||
Reference in New Issue
Block a user