summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2021-10-15 19:36:52 -0400
committerGravatar Morph2021-10-15 19:36:52 -0400
commitd4c79a040460c1af7208c1431d09e009b7c14246 (patch)
tree7b6370af5df3949cac9ab8e63b75bac4d0b0c97d /src
parentMerge pull request #7187 from FernandoS27/boy-i-say-boy (diff)
downloadyuzu-d4c79a040460c1af7208c1431d09e009b7c14246.tar.gz
yuzu-d4c79a040460c1af7208c1431d09e009b7c14246.tar.xz
yuzu-d4c79a040460c1af7208c1431d09e009b7c14246.zip
main: Add missing make_unique for ui
Diffstat (limited to '')
-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() {
192} 192}
193 193
194GMainWindow::GMainWindow() 194GMainWindow::GMainWindow()
195 : system{std::make_unique<Core::System>()}, 195 : ui{std::make_unique<Ui::MainWindow>()}, system{std::make_unique<Core::System>()},
196 input_subsystem{std::make_shared<InputCommon::InputSubsystem>()}, 196 input_subsystem{std::make_shared<InputCommon::InputSubsystem>()},
197 config{std::make_unique<Config>(*system)}, 197 config{std::make_unique<Config>(*system)},
198 vfs{std::make_shared<FileSys::RealVfsFilesystem>()}, 198 vfs{std::make_shared<FileSys::RealVfsFilesystem>()},