From cd53dae82e70e3fa783b5c163c9376978bc1ed03 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 4 Dec 2023 23:35:47 +0900 Subject: [PATCH] [nq] Initialize backtrace code with program path This will give nice debug info for backtraces when used. --- nq/source/host.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nq/source/host.c b/nq/source/host.c index ada316379..9acb0d9ca 100644 --- a/nq/source/host.c +++ b/nq/source/host.c @@ -32,6 +32,7 @@ # include #endif +#include "QF/backtrace.h" #include "QF/cbuf.h" #include "QF/dstring.h" #include "QF/cmd.h" @@ -905,6 +906,7 @@ Host_ExecConfig (cbuf_t *cbuf, int skip_quakerc) void Host_Init (void) { + BT_Init (com_argv[0]); sys_quake_encoding = true; Sys_RegisterShutdown (Host_Shutdown, 0); Sys_Printf ("Host_Init\n");