From 0c17544322c4490f0291af29c7f91eb91f37eda9 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Sun, 26 Jul 2026 17:29:09 +0200 Subject: [PATCH] typo --- core/debug/trace/trace_windows.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/debug/trace/trace_windows.odin b/core/debug/trace/trace_windows.odin index f421f7364..5f64cb084 100644 --- a/core/debug/trace/trace_windows.odin +++ b/core/debug/trace/trace_windows.odin @@ -47,7 +47,7 @@ _resolve :: proc(bt: Capture, allocator, temp_allocator: runtime.Allocator) -> ( // Debug info is needed, if we call with out-of-date debug symbols it will return out-of-date info, so better to short-circuit right away. when !ODIN_DEBUG { - for &location, i in locations { + for &location, i in out { location.file_path = "??" builder := strings.builder_make(allocator)