1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-14 00:54:05 +02:00

fix compiler warning

This commit is contained in:
XProger
2018-03-04 00:20:37 +03:00
parent 9ffa678b69
commit cd3c8596c7

View File

@@ -726,7 +726,7 @@ struct MeshBuilder {
plane.iCount = 0;
#endif
LOG("MegaMesh (i:%d v:%d a:%d, size:%d)\n", iCount, vCount, aCount, iCount * sizeof(Index) + vCount * sizeof(VertexGPU));
LOG("MegaMesh (i:%d v:%d a:%d, size:%d)\n", iCount, vCount, aCount, int(iCount * sizeof(Index) + vCount * sizeof(VertexGPU)));
// compile buffer and ranges
mesh = new Mesh(indices, iCount, vertices, vCount, aCount);