From d4c79a040460c1af7208c1431d09e009b7c14246 Mon Sep 17 00:00:00 2001 From: Morph <39850852+Morph1984@users.noreply.github.com> Date: Fri, 15 Oct 2021 19:36:52 -0400 Subject: main: Add missing make_unique for ui --- src/yuzu/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()}, + : ui{std::make_unique()}, system{std::make_unique()}, input_subsystem{std::make_shared()}, config{std::make_unique(*system)}, vfs{std::make_shared()}, -- cgit v1.2.3