summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2021-10-16 01:48:10 +0200
committerGitHub <noreply@github.com>2021-10-16 01:48:10 +0200
commit8b996015a88f954535cc8024196aec0fd4b0bc7b (patch)
tree7b6370af5df3949cac9ab8e63b75bac4d0b0c97d
parentMerge pull request #7187 from FernandoS27/boy-i-say-boy (diff)
parentmain: Add missing make_unique for ui (diff)
downloadyuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar.gz
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar.bz2
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar.lz
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar.xz
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.tar.zst
yuzu-8b996015a88f954535cc8024196aec0fd4b0bc7b.zip
-rw-r--r--src/yuzu/main.cpp2
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>()},