We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b50f78f commit 1299229Copy full SHA for 1299229
MGS3CrouchWalk/dllmain.cpp
@@ -118,7 +118,7 @@ int* __fastcall CalculateCamoIndexHook(int* a1, int a2)
118
if (CrouchMoving)
119
{
120
*camoIndex = *camoIndex < 0 ? *camoIndex / CamoIndexModifier : *camoIndex * CamoIndexModifier;
121
- *camoIndex -= CamoIndexValue;
+ *camoIndex += CamoIndexValue;
122
123
if (*camoIndex > 950) *camoIndex = 950;
124
if (*camoIndex < -1000) *camoIndex = -1000;
0 commit comments