diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-03-04 12:40:53 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-03-26 22:05:37 -0400 |
commit | 41d2565f2946f10ed1e3faa8c057114900a29945 (patch) | |
tree | 5735246fd762a40b6e55e8442341c6e46e0b8ffe /src/yuzu/main.h | |
parent | 60f39060c68605c6b3628cea37ef4353f06b5d0e (diff) |
game_list: Register content with ContentProvider
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index e07c892cf..36105dd39 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -37,7 +37,8 @@ struct SoftwareKeyboardParameters; } // namespace Core::Frontend namespace FileSys { -class RegisteredCacheUnion; +class ContentProvider; +class ManualContentProvider; class VfsFilesystem; } // namespace FileSys @@ -204,7 +205,7 @@ private slots: void OnReinitializeKeys(ReinitializeKeyBehavior behavior); private: - std::optional<u64> SelectRomFSDumpTarget(const FileSys::RegisteredCacheUnion&, u64 program_id); + std::optional<u64> SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id); void UpdateStatusBar(); Ui::MainWindow ui; @@ -232,6 +233,7 @@ private: // FS std::shared_ptr<FileSys::VfsFilesystem> vfs; + std::unique_ptr<FileSys::ManualContentProvider> provider; // Debugger panes ProfilerWidget* profilerWidget; |