Update applyHook.cpp

clang
This commit is contained in:
RichardAH
2024-11-09 14:23:43 +10:00
committed by GitHub
parent 8cf6bfcef9
commit 638a2ba34a

View File

@@ -5458,12 +5458,12 @@ float_divide_internal(int64_t float1, int64_t float2, bool hasFix)
if (hasFix)
{
for (; man1 >= man2; man1 -= man2, ++i)
;
;
}
else
{
for (; man1 > man2; man1 -= man2, ++i)
;
;
}
man3 *= 10;