Skip to content

Commit

Permalink
Fix minor
Browse files Browse the repository at this point in the history
  • Loading branch information
simustyt committed Jun 5, 2024
1 parent 950ebf6 commit 755de0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pak128.prototype/scenario/tutorial/scenario.nut
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ function string_analyzer()
local siz_va = val_a.len()
local siz_vb = val_b.len()
local siz_min = min(siz_va, siz_vb)
for(local i = 0; i < siz_va && i < siz_vb; i++ ) {
for(local i = 0; i < siz_min; i++ ) {
local num_a = val_a[i]
local num_b = val_b[i]
//gui.add_message("Array test -- val_a "+num_a+" val_b "+num_b+" -- siz_A "+siz_va+" siz_B "+siz_vb)
Expand Down

0 comments on commit 755de0b

Please sign in to comment.