diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-05-13 18:51:02 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-30 17:27:23 -0400 |
| commit | 2d410ddf4d9c0109d64fdf3319efeb9e6cc0bce1 (patch) | |
| tree | 81e11426f742b8e8605782095999dc3a3ec5524b /src/core/hle/service/bcat/backend/boxcat.h | |
| parent | 92b70a3bf9d4657dccc5a5f2cffdd7789946ca14 (diff) | |
bcat: Implement DeliveryCacheProgressImpl structure
Huge thanks to lioncash for re-ing this for me.
Diffstat (limited to 'src/core/hle/service/bcat/backend/boxcat.h')
| -rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.h b/src/core/hle/service/bcat/backend/boxcat.h index 1148a4eca..601151189 100644 --- a/src/core/hle/service/bcat/backend/boxcat.h +++ b/src/core/hle/service/bcat/backend/boxcat.h @@ -21,16 +21,16 @@ struct EventStatus { /// doesn't require a switch or nintendo account. The content is controlled by the yuzu team. class Boxcat final : public Backend { friend void SynchronizeInternal(DirectoryGetter dir_getter, TitleIDVersion title, - CompletionCallback callback, + ProgressServiceBackend& progress, std::optional<std::string> dir_name); public: explicit Boxcat(DirectoryGetter getter); ~Boxcat() override; - bool Synchronize(TitleIDVersion title, CompletionCallback callback) override; + bool Synchronize(TitleIDVersion title, ProgressServiceBackend& progress) override; bool SynchronizeDirectory(TitleIDVersion title, std::string name, - CompletionCallback callback) override; + ProgressServiceBackend& progress) override; bool Clear(u64 title_id) override; |
