diff options
| author | gingerBill <bill@gingerbill.org> | 2024-04-28 12:56:53 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-04-28 12:56:53 +0100 |
| commit | be09584ea5a61ac83c8ddc96eba1c7bccbe51472 (patch) | |
| tree | 2aa48cde899a0533a59927e38662c2c863ea1504 /core/debug | |
| parent | 5ac8e8f9fd6d2e749edd7bf37c28d7439ed4e840 (diff) | |
Increase `MAX_FRAMES`
Diffstat (limited to 'core/debug')
| -rw-r--r-- | core/debug/trace/trace.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debug/trace/trace.odin b/core/debug/trace/trace.odin index eef27499d..243232ddc 100644 --- a/core/debug/trace/trace.odin +++ b/core/debug/trace/trace.odin @@ -4,7 +4,7 @@ import "base:intrinsics" import "base:runtime" Frame :: distinct uintptr -MAX_FRAMES :: 64 +MAX_FRAMES :: 512 Frame_Location :: struct { using loc: runtime.Source_Code_Location, |