Files
Mu/tools/palm/hwTestSuite/debug.h
2018-12-20 20:24:30 -08:00

17 lines
228 B
C

#ifndef DEBUG_H
#define DEBUG_H
#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