aboutsummaryrefslogtreecommitdiff
path: root/core/debug/trace
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-04-28 12:56:53 +0100
committergingerBill <bill@gingerbill.org>2024-04-28 12:56:53 +0100
commitbe09584ea5a61ac83c8ddc96eba1c7bccbe51472 (patch)
tree2aa48cde899a0533a59927e38662c2c863ea1504 /core/debug/trace
parent5ac8e8f9fd6d2e749edd7bf37c28d7439ed4e840 (diff)
Increase `MAX_FRAMES`
Diffstat (limited to 'core/debug/trace')
-rw-r--r--core/debug/trace/trace.odin2
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,