Fixed issue with ViGEm::Bus::Core::EmulationTargetPDO::EnqueueWaitDeviceReady not reporting online children

This commit is contained in:
Benjamin Höglinger-Stelzer
2020-11-03 17:03:13 +01:00
parent 27555457a7
commit 1a401ff65b
11 changed files with 29 additions and 2 deletions

9
sys/Debugging.hpp Normal file
View File

@@ -0,0 +1,9 @@
//
// Don't compile in verbose tracing on release builds
//
#ifndef DBG
#ifdef TraceDbg
#undef TraceDbg
#define TraceDbg(...) { /* nothing to see here :) */ };
#endif
#endif