diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-06-30 01:27:25 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-30 01:27:25 +1000 |
| commit | e388f01e1164aaaeca0f9375f4ad0288539122c5 (patch) | |
| tree | ce56e22b12f67599111e219feac2a3c8a3bb98b3 /Source/Core/VideoCommon/RenderBase.cpp | |
| parent | f151570b2d4bdb5a45fd2bba76093040a79e98a7 (diff) | |
| parent | 5f0b4d8da5a852774a18f85707c064665974b701 (diff) | |
Merge pull request #8215 from CookiePLMonster/appverifier-sanitize
Fixed various errors spotted with Application Verifier
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/RenderBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp index 3d0742dd6a..19e892a515 100644 --- a/Source/Core/VideoCommon/RenderBase.cpp +++ b/Source/Core/VideoCommon/RenderBase.cpp @@ -1282,7 +1282,7 @@ void Renderer::Swap(u32 xfb_addr, u32 fb_width, u32 fb_stride, u32 fb_height, u6 perf_sample.speed_ratio = SystemTimers::GetEstimatedEmulationPerformance(); perf_sample.num_prims = stats.thisFrame.numPrims + stats.thisFrame.numDLPrims; perf_sample.num_draw_calls = stats.thisFrame.numDrawCalls; - DolphinAnalytics::Instance()->ReportPerformanceInfo(std::move(perf_sample)); + DolphinAnalytics::Instance().ReportPerformanceInfo(std::move(perf_sample)); if (IsFrameDumping()) DumpCurrentFrame(xfb_entry->texture.get(), xfb_rect, ticks); |
