diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-04-03 00:05:31 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-04-03 00:52:58 +0200 |
| commit | 3a0df800664105f5944ad9e0230debe3a3207969 (patch) | |
| tree | f2ac5c150bae1b0fc62bf6381bded50bfad5b6bf /core/encoding/hxa | |
| parent | 21fcf7c8744260c904e7040bdb1d550a0931aa3e (diff) | |
correct newly found vets
Diffstat (limited to 'core/encoding/hxa')
| -rw-r--r-- | core/encoding/hxa/read.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/hxa/read.odin b/core/encoding/hxa/read.odin index 8a8636f19..f37dc3193 100644 --- a/core/encoding/hxa/read.odin +++ b/core/encoding/hxa/read.odin @@ -177,7 +177,7 @@ read :: proc(data: []byte, filename := "<input>", print_error := false, allocato } defer file.nodes = file.nodes[:node_count] - for node_idx in 0..<header.internal_node_count { + for _ in 0..<header.internal_node_count { node := &file.nodes[node_count] type := read_value(r, Node_Type) or_return if type > max(Node_Type) { |