read.the.docs

This commit is contained in:
Steven Tracey 2024-11-21 15:27:37 -05:00
parent ca648f24f6
commit 09674009cb

View File

@ -36,9 +36,10 @@
#define __DEBUG_H
#include <stdio.h>
#include <ncurses.h>
#if DEBUG
#define Debug(__info,...) mvprintfw("Debug: " __info,##__VA_ARGS__); refresh()
#define Debug(__info,...) mvprintw(0, 0, "Debug: " __info,##__VA_ARGS__); refresh()
#else
#define Debug(__info,...)
#endif