diff options
author | Wohlstand <admin@wohlnet.ru> | 2025-04-15 03:25:05 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2025-04-15 03:25:05 +0300 |
commit | 5fd1dae9ebbca0718239168be060082a0d92ed7f (patch) | |
tree | 7b2b9dcd0a8fb261355538779ec60d2e5ef19d09 /src | |
parent | b34d18388a85ff715a2b687534223a4550e8e442 (diff) | |
download | libADLMIDI-5fd1dae9ebbca0718239168be060082a0d92ed7f.tar.gz libADLMIDI-5fd1dae9ebbca0718239168be060082a0d92ed7f.tar.bz2 libADLMIDI-5fd1dae9ebbca0718239168be060082a0d92ed7f.zip |
Added missing check macros into adlmidi_opl3.cpp
#288
Diffstat (limited to 'src')
-rw-r--r-- | src/adlmidi_opl3.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/adlmidi_opl3.cpp b/src/adlmidi_opl3.cpp index 5690721..dcba852 100644 --- a/src/adlmidi_opl3.cpp +++ b/src/adlmidi_opl3.cpp @@ -33,7 +33,13 @@ # if defined(ADLMIDI_DISABLE_NUKED_EMULATOR) && \ defined(ADLMIDI_DISABLE_DOSBOX_EMULATOR) && \ defined(ADLMIDI_DISABLE_OPAL_EMULATOR) && \ - defined(ADLMIDI_DISABLE_JAVA_EMULATOR) + defined(ADLMIDI_DISABLE_JAVA_EMULATOR) && \ + defined(ADLMIDI_DISABLE_ESFMU_EMULATOR) && \ + defined(ADLMIDI_DISABLE_MAME_OPL2_EMULATOR) && \ + defined(ADLMIDI_DISABLE_YMFM_EMULATOR) && \ + !defined(ADLMIDI_ENABLE_OPL2_LLE_EMULATOR) && \ + !defined(ADLMIDI_ENABLE_OPL3_LLE_EMULATOR) && \ + !defined(ADLMIDI_ENABLE_HW_SERIAL) # error "No emulators enabled. You must enable at least one emulator to use this library!" # endif |