aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-07-30 09:32:26 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-10-07 13:50:13 -0400
commit4ce53ffe6a61cb853f2fdd88211f35cec63e2f70 (patch)
treee2820ff4acde031dc0eb317a0610b478f0748321 /src/yuzu/main.cpp
parent493905665c2e9ea200301b44dcee599933f5b62c (diff)
game_list: Remove global instances of Core::System
Diffstat (limited to 'src/yuzu/main.cpp')
-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 056f7da36..1d9e0f79d 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -701,7 +701,7 @@ void GMainWindow::InitializeWidgets() {
render_window = new GRenderWindow(this, emu_thread.get(), input_subsystem, system);
render_window->hide();
- game_list = new GameList(vfs, provider.get(), this);
+ game_list = new GameList(vfs, provider.get(), system, this);
ui.horizontalLayout->addWidget(game_list);
game_list_placeholder = new GameListPlaceholder(this);