Remove std prefix from int types

std::int* -> int*
This commit is contained in:
sukibaby
2024-10-08 20:52:52 -07:00
committed by teejusb
parent fbe0e0b658
commit a6a60e2e56
71 changed files with 256 additions and 256 deletions
+2 -2
View File
@@ -17,14 +17,14 @@ struct msTriangle
struct msMesh
{
RString sName;
std::int8_t nMaterialIndex;
int8_t nMaterialIndex;
std::vector<RageModelVertex> Vertices;
// OPTIMIZATION: If all verts in a mesh are transformed by the same bone,
// then send the transform to the graphics card for the whole mesh instead
// of transforming each vertex on the CPU;
std::int8_t m_iBoneIndex; // -1 = no bone
int8_t m_iBoneIndex; // -1 = no bone
std::vector<msTriangle> Triangles;
};