Remove std prefix from int types

std::int* -> int*
This commit is contained in:
sukibaby
2024-10-05 20:48:43 -07:00
committed by teejusb
parent fbe0e0b658
commit a6a60e2e56
71 changed files with 256 additions and 256 deletions
+2 -2
View File
@@ -544,7 +544,7 @@ void Model::PlayAnimation( const RString &sAniName, float fPlayRate )
{
// int iBoneIndex = (pMesh->m_iBoneIndex!=-1) ? pMesh->m_iBoneIndex : bone;
RageVector3 &pos = Vertices[j].p;
std::int8_t bone = Vertices[j].bone;
int8_t bone = Vertices[j].bone;
if( bone != -1 )
{
pos[0] -= m_vpBones[bone].m_Absolute.m[3][0];
@@ -701,7 +701,7 @@ void Model::UpdateTempGeometry()
RageVector3 &tempNormal = tempVertices[j].n;
const RageVector3 &originalPos = origVertices[j].p;
const RageVector3 &originalNormal = origVertices[j].n;
std::int8_t bone = origVertices[j].bone;
int8_t bone = origVertices[j].bone;
if( bone == -1 )
{