Replies: 1 comment
-
I'd rather move the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in procedure TPeDumpChild.SectionListViewData, there are two lines where multiplication by 100 (integer) leads to overflow when your exe is large.
Fix:
Replace 100 with 100.0 in both places to enforce float calculation and avoid the error.
Beta Was this translation helpful? Give feedback.
All reactions