Replies: 1 comment 3 replies
-
|
I'd rather move the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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