diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-03 11:51:48 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-08 21:18:45 -0400 |
commit | 4b471f0554146463f3b82eed14ff3922a5584e9f (patch) | |
tree | 677b35914dd914343700be24a1e4098db292615c /src/yuzu/game_list.h | |
parent | aaa8fdea527d635e6503a1411a06938325cba216 (diff) |
core: Port core to VfsFilesystem for file access
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index 3bc14f07f..afe624b32 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -59,7 +59,7 @@ public: QToolButton* button_filter_close = nullptr; }; - explicit GameList(GMainWindow* parent = nullptr); + explicit GameList(FileSys::VirtualFilesystem vfs, GMainWindow* parent = nullptr); ~GameList() override; void clearFilter(); @@ -90,6 +90,7 @@ private: void PopupContextMenu(const QPoint& menu_location); void RefreshGameDirectory(); + FileSys::VirtualFilesystem vfs; SearchField* search_field; GMainWindow* main_window = nullptr; QVBoxLayout* layout = nullptr; |