We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9db8d commit 3a7249fCopy full SHA for 3a7249f
tools/VmaDumpVis/VmaDumpVis.py
@@ -25,7 +25,7 @@
25
from PIL import Image, ImageDraw, ImageFont
26
27
28
-PROGRAM_VERSION = 'VMA Dump Visualization 1.0.0'
+PROGRAM_VERSION = 'VMA Dump Visualization 2.0.0'
29
IMG_SIZE_X = 800
30
IMG_MARGIN = 8
31
FONT_SIZE = 10
@@ -246,7 +246,7 @@ def BytesToStr(iBytes):
246
index = 0
247
for iPoolId, listPool in dictMemType['CustomPools'].items():
248
for objBlock in listPool:
249
- if 'Algorithm' in objBlock:
+ if 'Algorithm' in objBlock and objBlock['Algorithm']:
250
sAlgorithm = ' (Algorithm: %s)' % (objBlock['Algorithm']);
251
else:
252
sAlgorithm = '';
0 commit comments