Skip to content

Commit 40b0e3f

Browse files
committed
pascal case rotfrictions
1 parent e413d60 commit 40b0e3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/engine/model/ragdoll.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void ragdollskel::setuprotfrictions()
126126
{
127127
if(tris[i].shareverts(tris[j]))
128128
{
129-
rotfriction r;
129+
RotFriction r;
130130
r.tri[0] = i;
131131
r.tri[1] = j;
132132
rotfrictions.push_back(r);

src/engine/model/ragdoll.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ class ragdollskel final
6767
};
6868
std::vector<rotlimit> rotlimits;
6969

70-
struct rotfriction final
70+
struct RotFriction final
7171
{
7272
std::array<int, 2> tri;
7373
};
74-
std::vector<rotfriction> rotfrictions;
74+
std::vector<RotFriction> rotfrictions;
7575

7676
//a distance constraint between two specified vertices
7777
//vert specifies the indices of the vertices in the verts vector, and

0 commit comments

Comments
 (0)