Skip to content

Commit 3a7249f

Browse files
VmaDumpVis.py: Small fix. Bumped tool version number, which I forgot to do before.
1 parent fc9db8d commit 3a7249f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/VmaDumpVis/VmaDumpVis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from PIL import Image, ImageDraw, ImageFont
2626

2727

28-
PROGRAM_VERSION = 'VMA Dump Visualization 1.0.0'
28+
PROGRAM_VERSION = 'VMA Dump Visualization 2.0.0'
2929
IMG_SIZE_X = 800
3030
IMG_MARGIN = 8
3131
FONT_SIZE = 10
@@ -246,7 +246,7 @@ def BytesToStr(iBytes):
246246
index = 0
247247
for iPoolId, listPool in dictMemType['CustomPools'].items():
248248
for objBlock in listPool:
249-
if 'Algorithm' in objBlock:
249+
if 'Algorithm' in objBlock and objBlock['Algorithm']:
250250
sAlgorithm = ' (Algorithm: %s)' % (objBlock['Algorithm']);
251251
else:
252252
sAlgorithm = '';

0 commit comments

Comments
 (0)