gingerBill 1 gadu atpakaļ
vecāks
revīzija
bef3ca98f0
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      core/debug/trace/trace_nil.odin

+ 1 - 1
core/debug/trace/trace_nil.odin

@@ -12,7 +12,7 @@ _init :: proc(ctx: ^Context) -> (ok: bool) {
 _destroy :: proc(ctx: ^Context) -> bool {
 	return true
 }
-_frames :: proc(ctx: ^Context, skip: uint, allocator: runtime.Allocator) -> []Frame {
+_frames :: proc(ctx: ^Context, skip: uint, frames_buffer: []Frame) -> []Frame {
 	return nil
 }
 _resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) {