aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/hxa
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2024-04-03 00:05:31 +0200
committerLaytan Laats <laytanlaats@hotmail.com>2024-04-03 00:52:58 +0200
commit3a0df800664105f5944ad9e0230debe3a3207969 (patch)
treef2ac5c150bae1b0fc62bf6381bded50bfad5b6bf /core/encoding/hxa
parent21fcf7c8744260c904e7040bdb1d550a0931aa3e (diff)
correct newly found vets
Diffstat (limited to 'core/encoding/hxa')
-rw-r--r--core/encoding/hxa/read.odin2
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) {