mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
yuzu_cmd: Remove remaining static system instances
This commit is contained in:
parent
b6719094e6
commit
218ebc1fe8
1 changed files with 2 additions and 3 deletions
|
@ -146,9 +146,8 @@ int main(int argc, char** argv) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
Core::System::InitializeGlobalInstance();
|
Core::System system{};
|
||||||
auto& system{Core::System::GetInstance()};
|
InputCommon::InputSubsystem input_subsystem{};
|
||||||
InputCommon::InputSubsystem input_subsystem;
|
|
||||||
|
|
||||||
// Apply the command line arguments
|
// Apply the command line arguments
|
||||||
system.ApplySettings();
|
system.ApplySettings();
|
||||||
|
|
Loading…
Reference in a new issue