-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
It seems you commented out code to set iDiv
Line 1834 in 5993fc3
| endif; Init divisor to loop from MSBsiDiv = Math.Pow(2, (iBits - 1)) As Int |
Later in the function you are dividing by iDiv which I assume would throw a bunch of errors.
I think you intended it to be
endif ; Init divisor to loop from MSBs
iDiv = Math.Pow(2, (iBits - 1)) As Int
You could also move L1812 to L1835
Int iDiv = Math.Pow(2, (iBits - 1)) As Int
You don't need to declare iDiv until after you check iRes
Metadata
Metadata
Assignees
Labels
No labels