diff options
| author | 2014-10-29 21:07:27 -0400 | |
|---|---|---|
| committer | 2014-10-29 21:07:27 -0400 | |
| commit | 01e37962e78abe2a39a5bd518fa3590a36912526 (patch) | |
| tree | 93719ab2064b976fcb96528933409ea6048c230a /src/video_core/clipper.cpp | |
| parent | Merge pull request #161 from archshift/sdmc-detected (diff) | |
| parent | Fix some warnings (diff) | |
| download | yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.gz yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.xz yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.zip | |
Merge pull request #162 from SeannyM/warning-fixes
Fix some warnings
Diffstat (limited to 'src/video_core/clipper.cpp')
| -rw-r--r-- | src/video_core/clipper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/clipper.cpp b/src/video_core/clipper.cpp index 2cf166afd..96d3dabe2 100644 --- a/src/video_core/clipper.cpp +++ b/src/video_core/clipper.cpp | |||
| @@ -158,8 +158,8 @@ void ProcessTriangle(OutputVertex &v0, OutputVertex &v1, OutputVertex &v2) { | |||
| 158 | InitScreenCoordinates(vtx2); | 158 | InitScreenCoordinates(vtx2); |
| 159 | 159 | ||
| 160 | DEBUG_LOG(GPU, | 160 | DEBUG_LOG(GPU, |
| 161 | "Triangle %u/%u (%u buffer vertices) at position (%.3f, %.3f, %.3f, %.3f), " | 161 | "Triangle %lu/%lu (%lu buffer vertices) at position (%.3f, %.3f, %.3f, %.3f), " |
| 162 | "(%.3f, %.3f, %.3f, %.3f), (%.3f, %.3f, %.3f, %.3f) and " | 162 | "(%.3lu, %.3f, %.3f, %.3f), (%.3f, %.3f, %.3f, %.3f) and " |
| 163 | "screen position (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f)", | 163 | "screen position (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f)", |
| 164 | i,output_list.size(), buffer_vertices.size(), | 164 | i,output_list.size(), buffer_vertices.size(), |
| 165 | vtx0.pos.x.ToFloat32(), vtx0.pos.y.ToFloat32(), vtx0.pos.z.ToFloat32(), vtx0.pos.w.ToFloat32(),output_list.size(), | 165 | vtx0.pos.x.ToFloat32(), vtx0.pos.y.ToFloat32(), vtx0.pos.z.ToFloat32(), vtx0.pos.w.ToFloat32(),output_list.size(), |