diff options
author | Liam <byteslice@airmail.cc> | 2023-08-27 18:41:42 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-08-27 19:45:25 -0400 |
commit | 667ec286970560d3a5b12b987010082657aec7c3 (patch) | |
tree | c03a8e4279fe4d6a1e74896f727b75f9b13e9c45 /src/yuzu/game_list.h | |
parent | 5464423667dedc0f09d48f85fc7871a3e56127a4 (diff) |
Address review comments
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index cde6f1e1f..6e8382c0f 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -18,6 +18,7 @@ #include "core/core.h" #include "uisettings.h" #include "yuzu/compatibility_list.h" +#include "yuzu/play_time_manager.h" namespace Core { class System; @@ -79,7 +80,8 @@ public: }; explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs_, - FileSys::ManualContentProvider* provider_, Core::System& system_, + FileSys::ManualContentProvider* provider_, + PlayTime::PlayTimeManager& play_time_manager_, Core::System& system_, GMainWindow* parent = nullptr); ~GameList() override; @@ -168,6 +170,7 @@ private: friend class GameListSearchField; + const PlayTime::PlayTimeManager& play_time_manager; Core::System& system; }; |