yuzu_cmd: Remove remaining static system instances

This commit is contained in:
Morph 2021-10-14 14:31:28 -04:00
parent b6719094e6
commit 218ebc1fe8
1 changed files with 2 additions and 3 deletions

View File

@ -146,9 +146,8 @@ int main(int argc, char** argv) {
return -1;
}
Core::System::InitializeGlobalInstance();
auto& system{Core::System::GetInstance()};
InputCommon::InputSubsystem input_subsystem;
Core::System system{};
InputCommon::InputSubsystem input_subsystem{};
// Apply the command line arguments
system.ApplySettings();