Merge pull request #9412 from Saalvage/fix/trace-log-compilation

Fix compilation error
This commit is contained in:
liamwhite 2022-12-09 17:03:19 -05:00 committed by GitHub
commit f6e705737a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ void DrawManager::ProcessTopologyOverride() {
}
void DrawManager::ProcessDraw(bool draw_indexed, u32 instance_count) {
LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology.Value(),
LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology,
draw_indexed ? draw_state.index_buffer.count : draw_state.vertex_buffer.count);
ProcessTopologyOverride();