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:
parent
681161f60b
commit
bd294ea4ed
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user