dblume commited on 2023-03-10 20:26:59
Showing 2 changed files, with 3 additions and 3 deletions.
| ... | ... |
@@ -36,7 +36,7 @@ sub printAA(aa) |
| 36 | 36 |
if type(val) = "roByteArray" |
| 37 | 37 |
m.top.updateText = " " + key + " = a byte array" |
| 38 | 38 |
elseif type(val) = "roArray" |
| 39 |
- for i=0 to val.Count() |
|
| 39 |
+ for i=0 to val.Count() - 1 |
|
| 40 | 40 |
m.top.updateText = " " + key + "[" + i.toStr() + "] = " + val[i] |
| 41 | 41 |
end for |
| 42 | 42 |
else |