aboutsummaryrefslogtreecommitdiff
path: root/src/entity_list.odin
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity_list.odin')
-rw-r--r--src/entity_list.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity_list.odin b/src/entity_list.odin
index 633a553..ce69be8 100644
--- a/src/entity_list.odin
+++ b/src/entity_list.odin
@@ -61,7 +61,7 @@ active_entity_count :: proc(list: Entity_List($T)) -> int {
Entity_List_Iter :: struct($T: typeid) {
list: Entity_List(T),
- idx: int,
+ idx: int,
}
iter_entity_list :: proc(list: Entity_List($T)) -> Entity_List_Iter(T) {