You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was not able to convert base30 to native and then back from native to base30. I was able to compare c# test units and found the issue lies in "ToBase30" function.
The line that causes these issues is:
Dim div As Integer = num / mag
when it should be
Dim div As Integer = num \ mag
The text was updated successfully, but these errors were encountered:
I was not able to convert base30 to native and then back from native to base30. I was able to compare c# test units and found the issue lies in "ToBase30" function.
The line that causes these issues is:
Dim div As Integer = num / mag
when it should be
Dim div As Integer = num \ mag
The text was updated successfully, but these errors were encountered: