From c04b004f9ca85120cec5057228c2b48bb856924f Mon Sep 17 00:00:00 2001 From: Simon Kellet Date: Wed, 15 Jul 2026 16:48:34 +0100 Subject: [PATCH] removed debug line, added free_all to allocator --- fleg/flag.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fleg/flag.odin b/fleg/flag.odin index 2baad13..ab0f747 100644 --- a/fleg/flag.odin +++ b/fleg/flag.odin @@ -64,7 +64,7 @@ init_custom_allocator :: proc(allocator: runtime.Allocator) { } destroy :: proc() { - fmt.println("fleg destroy proc()") + free_all(flag_allocator) delete(all_flags) all_flags = {} }