1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-23 15:50:05 +02:00

Midi diag mentions conditional compilation flags, but only in ALPHA

This commit is contained in:
Pokechu22 2017-06-01 08:51:09 -07:00 committed by Paul Licameli
parent 681161f60b
commit bd294ea4ed

View File

@ -3520,6 +3520,22 @@ wxString AudioIO::GetMidiDeviceInfo()
s << wxT("No MIDI playback device found for '") << playDevice << wxT("'.") << e; s << wxT("No MIDI playback device found for '") << playDevice << wxT("'.") << e;
} }
#ifdef IS_ALPHA
s << wxT("==============================") << e;
#ifdef EXPERIMENTAL_MIDI_OUT
s << wxT("EXPERIMENTAL_MIDI_OUT is enabled") << e;
#else
s << wxT("EXPERIMENTAL_MIDI_OUT is NOT enabled") << e;
#endif
#ifdef EXPERIMENTAL_MIDI_IN
s << wxT("EXPERIMENTAL_MIDI_IN is enabled") << e;
#else
s << wxT("EXPERIMENTAL_MIDI_IN is NOT enabled") << e;
#endif
#endif
return o.GetString(); return o.GetString();
} }
#endif #endif