diff options
| author | 2022-12-09 17:03:19 -0500 | |
|---|---|---|
| committer | 2022-12-09 17:03:19 -0500 | |
| 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.gz yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.xz yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.zip | |
Merge pull request #9412 from Saalvage/fix/trace-log-compilation
Fix compilation error
Diffstat (limited to '')
| -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() { | |||
| 180 | } | 180 | } |
| 181 | 181 | ||
| 182 | void DrawManager::ProcessDraw(bool draw_indexed, u32 instance_count) { | 182 | void DrawManager::ProcessDraw(bool draw_indexed, u32 instance_count) { |
| 183 | LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology.Value(), | 183 | LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology, |
| 184 | draw_indexed ? draw_state.index_buffer.count : draw_state.vertex_buffer.count); | 184 | draw_indexed ? draw_state.index_buffer.count : draw_state.vertex_buffer.count); |
| 185 | 185 | ||
| 186 | ProcessTopologyOverride(); | 186 | ProcessTopologyOverride(); |