handmade/include/debug.h
Bubblegumdrop 46b2ed80ae Initial commit.
Another nuke! This time, trying to do a client <-> server thing.

Also a bit of messing with Lua.
2022-01-02 19:28:16 -05:00

24 lines
516 B
C

#pragma once
#ifdef DEBUG
#include <SDL_log.h>
#include <stdarg.h>
#define DEBUG_LOG(...) debug_log (__FILE__, __LINE__, __VA_ARGS__)
static void debug_log (const char* filename, const int lineno, const char* fmt, ...)
{
char buf[8192];
va_list ap;
SDL_memset (buf, 0, sizeof buf);
va_start (ap, fmt);
vsnprintf (buf, (sizeof buf) - 1, fmt, ap);
va_end (ap);
SDL_LogMessage (SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "%s:%d: %s", filename, lineno, buf);
}
#else
#define DEBUG_LOG(...)
#endif