aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar zawata <zawataza@gmail.com>2015-06-29 11:32:53 -0700
committerGravatar zawata <zawataza@gmail.com>2015-07-19 04:12:40 -0700
commit04756bdaf646abc6b75e62bf37f5a674bc6a64c4 (patch)
treeb00554462b7188b41d4c6cf433c783d0d813923d /src/video_core/debug_utils
parent972dccc3f692adc113250d62531a774fecb9389c (diff)
Video_Core : Type fixes
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp2
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 8f732242..fc9faffc 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) {
vertices.push_back(v1);
vertices.push_back(v2);
- int num_vertices = static_cast<int>(vertices.size());
+ size_t num_vertices = vertices.size();
faces.push_back({ num_vertices-3, num_vertices-2, num_vertices-1 });
}