Browse Source
Merge pull request #7190 from Morph1984/missing-ui-main
main: Add missing make_unique for ui
pull/15/merge
Fernando S
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/main.cpp
|
|
|
@ -192,7 +192,7 @@ static void RemoveCachedContents() { |
|
|
|
} |
|
|
|
|
|
|
|
GMainWindow::GMainWindow() |
|
|
|
: system{std::make_unique<Core::System>()}, |
|
|
|
: ui{std::make_unique<Ui::MainWindow>()}, system{std::make_unique<Core::System>()}, |
|
|
|
input_subsystem{std::make_shared<InputCommon::InputSubsystem>()}, |
|
|
|
config{std::make_unique<Config>(*system)}, |
|
|
|
vfs{std::make_shared<FileSys::RealVfsFilesystem>()}, |
|
|
|
|