mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-31 13:59:57 +01:00
statements back in every time something breaks Fixed a crash under linux if when it was thinking there was at least one more joystick that it really had, funnily enough when it tried to get data from this joystick, it all went bang.
12 lines
213 B
C
12 lines
213 B
C
#ifdef LOGTRACE
|
|
#define LOG_TRACE(args...) printf(args)
|
|
#else
|
|
#define LOG_TRACE(args...)
|
|
#endif
|
|
|
|
#ifdef LOGPOLLTRACE
|
|
#define LOG_POLL_TRACE(args...) LOG_TRACE(args...)
|
|
#else
|
|
#define LOG_POLL_TRACE(args...)
|
|
#endif
|