More style improvements

This commit is contained in:
gingerBill
2024-06-29 19:23:58 +01:00
parent 663661db53
commit 103eccf104
7 changed files with 26 additions and 15 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ _Context :: struct {
@(private="package")
_init :: proc(ctx: ^Context) -> (ok: bool) {
defer if !ok do destroy(ctx)
defer if !ok { destroy(ctx) }
ctx.impl.state = backtrace_create_state("odin-debug-trace", 1, nil, ctx)
return ctx.impl.state != nil