Browse Source

Increase `MAX_FRAMES`

gingerBill 1 year ago
parent
commit
be09584ea5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/debug/trace/trace.odin

+ 1 - 1
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,