diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-03 06:08:45 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-03 06:08:45 +0100 |
commit | 2d2522693e7d453bf10a8246f704350b69e12ebc (patch) | |
tree | 195584b8f97867628b4d5bc37ecfff5c20655cf9 /src/core/reporter.h | |
parent | Merge pull request #9713 from unfamiliarplace/master (diff) | |
download | yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.gz yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.bz2 yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.lz yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.xz yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.zst yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/reporter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h index 9fdb9d6c1..bb11f8e7c 100644 --- a/src/core/reporter.h +++ b/src/core/reporter.h @@ -5,6 +5,7 @@ #include <array> #include <optional> +#include <span> #include <string> #include <vector> #include "common/common_types.h" @@ -56,7 +57,8 @@ public: System, }; - void SavePlayReport(PlayReportType type, u64 title_id, const std::vector<std::vector<u8>>& data, + void SavePlayReport(PlayReportType type, u64 title_id, + const std::vector<std::span<const u8>>& data, std::optional<u64> process_id = {}, std::optional<u128> user_id = {}) const; // Used by error applet |