Skip to content

Commit

Permalink
fixes array indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Park authored and Mike Park committed Sep 28, 2022
1 parent 847e0d9 commit c009dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ref_oct.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct REF_OCT_STRUCT {
#define ref_oct_leaf_node(ref_oct, tree_node) \
(REF_EMPTY == ref_oct_child(ref_oct, 0, tree_node))
#define ref_oct_c2n(ref_oct, corner, tree_node) \
((ref_oct)->children[(corner) + 27 * (tree_node)])
((ref_oct)->nodes[(corner) + 27 * (tree_node)])

REF_FCN REF_STATUS ref_oct_create(REF_OCT *ref_oct);

Expand Down

0 comments on commit c009dd8

Please sign in to comment.