diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:08:10 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:08:13 +0200 |
commit | 6ec48af2223c2470ce342a707f63c67b72c6cee9 (patch) | |
tree | 28d0ffbc0ecd5f47c0a5f9f57f3ac8946aa6d924 /src | |
parent | core/reporter: Make bracing consistent (diff) | |
download | yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar.gz yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar.bz2 yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar.lz yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar.xz yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.tar.zst yuzu-6ec48af2223c2470ce342a707f63c67b72c6cee9.zip |
Diffstat (limited to 'src')
-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 be471131f..96b71037a 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -176,7 +176,7 @@ json GetHLERequestContextData(Kernel::HLERequestContext& ctx) { out["buffer_descriptor_c"] = GetHLEBufferDescriptorData<false>(ctx.BufferDescriptorC()); out["buffer_descriptor_x"] = GetHLEBufferDescriptorData<true>(ctx.BufferDescriptorX()); - return std::move(out); + return out; } } // Anonymous namespace |