GPU: Fix HW readback counter

This commit is contained in:
Stenzek
2024-03-31 14:02:44 +10:00
parent 8ebda3cdc8
commit 3ecc19c43f
2 changed files with 2 additions and 1 deletions

View File

@ -2709,7 +2709,7 @@ void GPU::GetStatsString(SmallStringBase& str)
{
str.format("{} HW | {} P | {} DC | {} RP | {} RB | {} C | {} W",
GPUDevice::RenderAPIToString(g_gpu_device->GetRenderAPI()), m_stats.num_primitives,
m_stats.host_num_draws, m_stats.host_num_render_passes, m_stats.num_reads, m_stats.num_copies,
m_stats.host_num_draws, m_stats.host_num_render_passes, m_stats.host_num_downloads, m_stats.num_copies,
m_stats.num_writes);
}
else