diff options
Diffstat (limited to 'src/core/reporter.cpp')
| -rw-r--r-- | src/core/reporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index af0988d62..f95eee3b1 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp | |||
| @@ -157,7 +157,7 @@ json GetHLEBufferDescriptorData(const std::vector<DescriptorType>& buffer, Memor | |||
| 157 | 157 | ||
| 158 | if constexpr (read_value) { | 158 | if constexpr (read_value) { |
| 159 | std::vector<u8> data(desc.Size()); | 159 | std::vector<u8> data(desc.Size()); |
| 160 | Memory::ReadBlock(desc.Address(), data.data(), desc.Size()); | 160 | memory.ReadBlock(desc.Address(), data.data(), desc.Size()); |
| 161 | entry["data"] = Common::HexToString(data); | 161 | entry["data"] = Common::HexToString(data); |
| 162 | } | 162 | } |
| 163 | 163 | ||