Skip to content

Commit

Permalink
How did I make this mistake lol
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Sep 21, 2023
1 parent f27b05c commit b1f3bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SADXWeightedCharacters/mod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,11 @@ void __cdecl ProcessVertexWelds_Check(EntityData1* a1, EntityData2* a2, CharObj2
}
if (MetalSonicFlag)
{
if (object = SONIC_OBJECTS[0])
if (object == SONIC_OBJECTS[0])
object = SONIC_OBJECTS[68];
else if (object = SONIC_OBJECTS[66])
else if (object == SONIC_OBJECTS[66])
object = SONIC_OBJECTS[69];
else if (object = SONIC_OBJECTS[67])
else if (object == SONIC_OBJECTS[67])
object = SONIC_OBJECTS[70];
}
ProcessWeights(a3, object, motion, a3->AnimationThing.Frame);
Expand Down

0 comments on commit b1f3bad

Please sign in to comment.