mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-12 13:21:51 +00:00
87d46ddd11
## 1.5.0 2020-09-28 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for OPNA chip with Neko Project II Kai YM2602 emulator usage (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added VGM file dumper which allows to output OPN2 commands into VGM file. (A new MIDI to VGM tool is now created with basing on libOPNMIDI) * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Internality has been refactored and improved
15 lines
405 B
C
15 lines
405 B
C
#ifndef incl_diag_h
|
|
#define incl_diag_h
|
|
|
|
#define LOG0(m) void (0)
|
|
#define LOG1(m,a) void (0)
|
|
#define LOG2(m,a,b) void (0)
|
|
#define LOG3(m,a,b,c) void (0)
|
|
#define LOG4(m,a,b,c,d) void (0)
|
|
#define LOG5(m,a,b,c,d,e) void (0)
|
|
#define LOG6(m,a,b,c,d,e,f) void (0)
|
|
#define LOG7(m,a,b,c,d,e,f,g) void (0)
|
|
#define LOG8(m,a,b,c,d,e,f,g,h) void (0)
|
|
#define LOG9(m,a,b,c,d,e,f,g,h,i) void (0)
|
|
|
|
#endif // incl_diag_h
|