Explorar el Código

Address error that remained in last merge

Yuri Kunde Schlesner hace 11 años
padre
commit
00529c71d4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/video_core/debug_utils/debug_utils.cpp

+ 1 - 1
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);
 
-    size_t num_vertices = vertices.size();
+    int num_vertices = (int)vertices.size();
     faces.push_back({ num_vertices-3, num_vertices-2, num_vertices-1 });
 }