diff options
| author | 2023-02-03 00:08:45 -0500 | |
|---|---|---|
| committer | 2023-02-03 00:08:45 -0500 | |
| commit | 2d2522693e7d453bf10a8246f704350b69e12ebc (patch) | |
| tree | 195584b8f97867628b4d5bc37ecfff5c20655cf9 /src/core/reporter.h | |
| parent | Merge pull request #9713 from unfamiliarplace/master (diff) | |
| download | yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.gz yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.tar.xz yuzu-2d2522693e7d453bf10a8246f704350b69e12ebc.zip | |
Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing
changes made to af20e25081f97d55b451606c87922e2b49f0d363.
Diffstat (limited to 'src/core/reporter.h')
| -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 @@ | |||
| 5 | 5 | ||
| 6 | #include <array> | 6 | #include <array> |
| 7 | #include <optional> | 7 | #include <optional> |
| 8 | #include <span> | ||
| 8 | #include <string> | 9 | #include <string> |
| 9 | #include <vector> | 10 | #include <vector> |
| 10 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| @@ -56,7 +57,8 @@ public: | |||
| 56 | System, | 57 | System, |
| 57 | }; | 58 | }; |
| 58 | 59 | ||
| 59 | void SavePlayReport(PlayReportType type, u64 title_id, const std::vector<std::vector<u8>>& data, | 60 | void SavePlayReport(PlayReportType type, u64 title_id, |
| 61 | const std::vector<std::span<const u8>>& data, | ||
| 60 | std::optional<u64> process_id = {}, std::optional<u128> user_id = {}) const; | 62 | std::optional<u64> process_id = {}, std::optional<u128> user_id = {}) const; |
| 61 | 63 | ||
| 62 | // Used by error applet | 64 | // Used by error applet |