mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
[nq] Initialize backtrace code with program path
This will give nice debug info for backtraces when used.
This commit is contained in:
parent
481602e64e
commit
cd53dae82e
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
|||
# include <unistd.h>
|
||||
#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");
|
||||
|
|
Loading…
Reference in a new issue