diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-09 23:03:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 23:03:19 +0100 |
commit | f6e705737a49ea7e10392181cb2f115ed3543941 (patch) | |
tree | 1c76506db8c98b6090e5b3ae829798f2b6b0cf77 /src | |
parent | Merge pull request #9411 from Saalvage/fix/unlock-mutex (diff) | |
parent | Fix compilation error (diff) | |
download | yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.gz yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.bz2 yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.lz yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.xz yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.zst yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/draw_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/draw_manager.cpp b/src/video_core/engines/draw_manager.cpp index c59524e58..b213c374f 100644 --- a/src/video_core/engines/draw_manager.cpp +++ b/src/video_core/engines/draw_manager.cpp @@ -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(); |