diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-07-11 20:34:48 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-11 20:34:48 +1000 |
| commit | 4c649d1a5d92ccb1cb106861d60d744b92188524 (patch) | |
| tree | 25011e4e5197824643d837414f3a2ebb66d283a2 /Source/Core/VideoCommon/VertexManagerBase.cpp | |
| parent | 8d8d1037398f0aebd4fcec478ace20dfef91e4cc (diff) | |
| parent | 9c245655fbb1deea183d47a53dbd6ecaab3bcb4a (diff) | |
Merge pull request #8238 from lioncash/video-stats
VideoCommon/Statistics: Minor cleanup changes
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexManagerBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index a539d2673b..c9fa12f6bb 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -442,7 +442,7 @@ void VertexManagerBase::Flush() g_perf_query->EnableQuery(bpmem.zcontrol.early_ztest ? PQG_ZCOMP_ZCOMPLOC : PQG_ZCOMP); DrawCurrentBatch(base_index, num_indices, base_vertex); - INCSTAT(stats.thisFrame.numDrawCalls); + INCSTAT(g_stats.this_frame.num_draw_calls); if (PerfQueryBase::ShouldEmulate()) g_perf_query->DisableQuery(bpmem.zcontrol.early_ztest ? PQG_ZCOMP_ZCOMPLOC : PQG_ZCOMP); |
