diff options
author | Fernando S <fsahmkow27@gmail.com> | 2021-10-16 01:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 01:48:10 +0200 |
commit | 8b996015a88f954535cc8024196aec0fd4b0bc7b (patch) | |
tree | 7b6370af5df3949cac9ab8e63b75bac4d0b0c97d /src/yuzu/main.cpp | |
parent | aef3ae1cb93f962165b1f9596b95e4ffa4a5e9c5 (diff) | |
parent | d4c79a040460c1af7208c1431d09e009b7c14246 (diff) |
Merge pull request #7190 from Morph1984/missing-ui-main
main: Add missing make_unique for ui
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 3155a5c19..fdcd423d7 100644 --- a/src/yuzu/main.cpp +++ b/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>()}, |