Fix typo in roArray printer
dblume

dblume commited on 2023-03-09 08:07:37
Showing 2 changed files, with 2 additions and 2 deletions.

... ...
@@ -37,7 +37,7 @@ sub printAA(aa)
37 37
             m.top.updateText = "  " + key + " = a byte array"
38 38
         elseif type(val) = "roArray"
39 39
             for i=0 to val.Count()
40
-                m.top.updateText = "  " + key + "[" + i.toStr() + "] " + val[i]
40
+                m.top.updateText = "  " + key + "[" + i.toStr() + "] = " + val[i]
41 41
             end for
42 42
         else
43 43
             m.top.updateText = "  " + key + " = " + val.ToStr()
... ...
@@ -1,7 +1,7 @@
1 1
 title=dxb
2 2
 major_version=0
3 3
 minor_version=4
4
-build_version=6
4
+build_version=7
5 5
 ui_resolutions=fhd
6 6
 mm_icon_focus_hd=pkg:/images/mm_icon_focus_hd.png
7 7
 mm_icon_focus_sd=pkg:/images/mm_icon_focus_sd.png
8 8