diff options
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 60ce01471..6ef4e4d4e 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -107,7 +107,7 @@ class GMainWindow : public QMainWindow { public: void filterBarSetChecked(bool state); void UpdateUITheme(); - GMainWindow(); + GMainWindow(Core::System& system_); ~GMainWindow() override; bool DropAction(QDropEvent* event); @@ -309,6 +309,8 @@ private: std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc; std::shared_ptr<InputCommon::InputSubsystem> input_subsystem; + Core::System& system; + GRenderWindow* render_window; GameList* game_list; LoadingScreen* loading_screen; |