diff options
| author | 2015-07-25 16:54:51 -0300 | |
|---|---|---|
| committer | 2015-07-25 16:54:51 -0300 | |
| commit | 00529c71d4863e7c532548d61fefec92953a9b58 (patch) | |
| tree | da4c9891e2ed028495f744ce87a6179aa8859ba0 /src | |
| parent | Merge pull request #892 from zawata/another-warning-fixes (diff) | |
| download | yuzu-00529c71d4863e7c532548d61fefec92953a9b58.tar.gz yuzu-00529c71d4863e7c532548d61fefec92953a9b58.tar.xz yuzu-00529c71d4863e7c532548d61fefec92953a9b58.zip | |
Address error that remained in last merge
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index fc9faffc3..c3f8321c6 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -85,7 +85,7 @@ void GeometryDumper::AddTriangle(Vertex& v0, Vertex& v1, Vertex& v2) { | |||
| 85 | vertices.push_back(v1); | 85 | vertices.push_back(v1); |
| 86 | vertices.push_back(v2); | 86 | vertices.push_back(v2); |
| 87 | 87 | ||
| 88 | size_t num_vertices = vertices.size(); | 88 | int num_vertices = (int)vertices.size(); |
| 89 | faces.push_back({ num_vertices-3, num_vertices-2, num_vertices-1 }); | 89 | faces.push_back({ num_vertices-3, num_vertices-2, num_vertices-1 }); |
| 90 | } | 90 | } |
| 91 | 91 | ||