mirror of
https://github.com/XProger/OpenLara.git
synced 2025-08-16 10:04:28 +02:00
fix compiler warning
This commit is contained in:
@@ -726,7 +726,7 @@ struct MeshBuilder {
|
|||||||
plane.iCount = 0;
|
plane.iCount = 0;
|
||||||
#endif
|
#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
|
// compile buffer and ranges
|
||||||
mesh = new Mesh(indices, iCount, vertices, vCount, aCount);
|
mesh = new Mesh(indices, iCount, vertices, vCount, aCount);
|
||||||
|
Reference in New Issue
Block a user