diff options
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 10339dcca..675469e66 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h | |||
| @@ -72,7 +72,8 @@ public: | |||
| 72 | }; | 72 | }; |
| 73 | 73 | ||
| 74 | explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs, | 74 | explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs, |
| 75 | FileSys::ManualContentProvider* provider, GMainWindow* parent = nullptr); | 75 | FileSys::ManualContentProvider* provider, Core::System& system_, |
| 76 | GMainWindow* parent = nullptr); | ||
| 76 | ~GameList() override; | 77 | ~GameList() override; |
| 77 | 78 | ||
| 78 | QString GetLastFilterResultItem() const; | 79 | QString GetLastFilterResultItem() const; |
| @@ -145,6 +146,8 @@ private: | |||
| 145 | CompatibilityList compatibility_list; | 146 | CompatibilityList compatibility_list; |
| 146 | 147 | ||
| 147 | friend class GameListSearchField; | 148 | friend class GameListSearchField; |
| 149 | |||
| 150 | Core::System& system; | ||
| 148 | }; | 151 | }; |
| 149 | 152 | ||
| 150 | class GameListPlaceholder : public QWidget { | 153 | class GameListPlaceholder : public QWidget { |