mirror of
https://github.com/libretro/Mu.git
synced 2026-05-07 04:43:53 +00:00
17 lines
238 B
C
17 lines
238 B
C
#ifndef DEBUG_HEADER
|
|
#define DEBUG_HEADER
|
|
|
|
#include "ugui.h"
|
|
|
|
#ifdef DEBUG
|
|
void setDebugTag(char* tag);
|
|
void debugSafeScreenClear(UG_COLOR c);
|
|
#else
|
|
#define setDebugTag(x)
|
|
#define debugSafeScreenClear(x) UG_FillScreen(x)
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|