Skip to content

Commit e646018

Browse files
committed
Removing hardcoded effects loop in cleanup function in res.zig
1 parent 28f5a93 commit e646018

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

zsrc/res.zig

+2-3
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,8 @@ pub fn cleanup() void {
660660
wp.destroyWeapons();
661661

662662
// Effects also live for the life of the app and should be cleaned up.
663-
// NOTE: 3 is hardoded - baaaad.
664-
for (0..3) |i| {
665-
gAllocator.free(effects[i].keys);
663+
for (&effects) |*ef| {
664+
gAllocator.free(ef.keys);
666665
}
667666

668667
// Clean up long-lived texture crops, which are dynamically alloc'd.

0 commit comments

Comments
 (0)