mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-28 06:57:57 -05:00
game_list: Remove global instances of Core::System
This commit is contained in:
@ -72,7 +72,8 @@ public:
|
||||
};
|
||||
|
||||
explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs,
|
||||
FileSys::ManualContentProvider* provider, GMainWindow* parent = nullptr);
|
||||
FileSys::ManualContentProvider* provider, Core::System& system_,
|
||||
GMainWindow* parent = nullptr);
|
||||
~GameList() override;
|
||||
|
||||
QString GetLastFilterResultItem() const;
|
||||
@ -145,6 +146,8 @@ private:
|
||||
CompatibilityList compatibility_list;
|
||||
|
||||
friend class GameListSearchField;
|
||||
|
||||
Core::System& system;
|
||||
};
|
||||
|
||||
class GameListPlaceholder : public QWidget {
|
||||
|
Reference in New Issue
Block a user