diff options
Diffstat (limited to 'utils/vlc_codec/libadlmidi.c')
-rw-r--r-- | utils/vlc_codec/libadlmidi.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c index 8946880..49082c7 100644 --- a/utils/vlc_codec/libadlmidi.c +++ b/utils/vlc_codec/libadlmidi.c @@ -187,6 +187,14 @@ static const int emulator_type_values[] = (int)ADLMIDI_EMU_YMFM_OPL2, (int)ADLMIDI_EMU_YMFM_OPL3, #endif + +#ifdef ADLMIDI_ENABLE_OPL2_LLE_EMULATOR + (int)ADLMIDI_EMU_NUKED_OPL2_LLE, +#endif + +#ifdef ADLMIDI_ENABLE_OPL3_LLE_EMULATOR + (int)ADLMIDI_EMU_NUKED_OPL3_LLE, +#endif }; static const char * const emulator_type_descriptions[] = { @@ -219,6 +227,15 @@ static const char * const emulator_type_descriptions[] = N_("YMFM OPL2"), N_("YMFM OPL3"), #endif + +#ifdef ADLMIDI_ENABLE_OPL2_LLE_EMULATOR + N_("Nuked OPL2-LLE [!EXTRA HEAVY!]"), +#endif + +#ifdef ADLMIDI_ENABLE_OPL3_LLE_EMULATOR + N_("Nuked OPL3-LLE [!EXTRA HEAVY!]"), +#endif + NULL }; |