Skip to content

Commit

Permalink
Fix parsing changes for HexFiend
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed Feb 14, 2024
1 parent 02c401c commit 6f6cf02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/HexFiend/ChangeIndex.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ while {![end]} {
sectionvalue $changes_count
set prev_change [varint "0"]
for {set i 1} {$i < $changes_count} {incr i} {
varint "$i" $prev_change
set cur_change [varint "$i" $prev_change]
set prev_change $cur_change
}
}
}
Expand Down

0 comments on commit 6f6cf02

Please sign in to comment.