mirror of
https://github.com/nefarius/ViGEmBus.git
synced 2025-08-10 00:52:17 +00:00
10 lines
175 B
C++
10 lines
175 B
C++
//
|
|
// Don't compile in verbose tracing on release builds
|
|
//
|
|
#ifndef DBG
|
|
#ifdef TraceDbg
|
|
#undef TraceDbg
|
|
#define TraceDbg(...) { /* nothing to see here :) */ };
|
|
#endif
|
|
#endif
|