./DDRace64-Server_sql -f servers/8304.cfg'. Program terminated with signal SIGSEGV, Segmentation fault. warning: Section
.reg-xstate/1115820' in core file to...HandleSkippableTiles
doesn't return quite far out enough role == "usеr"
void curses_logf(const char *sys, const char *fmt, ...);
#define dbg_msg(sys, fmt, ...) curses_logf(sys, fmt, ##__VA_ARGS__)
i put this boi at the end of system.h/home/chiller/Desktop/git/chillerbot-ux/src/base/terminalui.cpp:136: multiple definition of `curses_logf'; CMakeFiles/engine-shared.dir/src/base/system.cpp.o:/home/chiller/Desktop/git/chillerbot-ux/src/base/system.cpp:131: first defined here
#define dbg_msg blergh
in system.cpp#if 0
above dbg_msg and #endif
below?dbg_msg
will also affect the definition of dbg_msg
void curses_logf(const char *sys, const char *fmt, ...)
{
va_list args;
char str[1024*4];
char *msg;
int len;
char timestr[80];
str_timestamp_format(timestr, sizeof(timestr), FORMAT_SPACE);
str_format(str, sizeof(str), "[%s][%s]: ", timestr, sys);
len = strlen(str);
msg = (char *)str + len;
va_start(args, fmt);
#if defined(CONF_FAMILY_WINDOWS) && !defined(__GNUC__)
_vsprintf_p(msg, sizeof(str)-len, fmt, args);
#else
vsnprintf(msg, sizeof(str)-len, fmt, args);
#endif
va_end(args);
// printf("%s\n", str);
curses_log_push(str);
}