aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-04-11 00:04:11 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-04-11 00:04:11 +0300
commitf9a946905207e8b5e51937513d804e80d1a55c92 (patch)
tree622873b30bb740c3061d651688653533f20e028f /utils
parentcd09e3835c59ffdaeec9666d0ee0cddea98772bf (diff)
downloadlibADLMIDI-f9a946905207e8b5e51937513d804e80d1a55c92.tar.gz
libADLMIDI-f9a946905207e8b5e51937513d804e80d1a55c92.tar.bz2
libADLMIDI-f9a946905207e8b5e51937513d804e80d1a55c92.zip
Put Nuked OPL3 1.8 be default and fix the DJGPP build
Diffstat (limited to 'utils')
-rw-r--r--utils/midiplay/adlmidiplay.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/midiplay/adlmidiplay.cpp b/utils/midiplay/adlmidiplay.cpp
index 3734b13..ed49b76 100644
--- a/utils/midiplay/adlmidiplay.cpp
+++ b/utils/midiplay/adlmidiplay.cpp
@@ -196,8 +196,8 @@ int main(int argc, char **argv)
" -nl Quit without looping\n"
" -w Write WAV file rather than playing\n"
#ifndef HARDWARE_OPL3
- " --emu-nuked Uses Nuked OPL3 v 1.7.4 emulator\n"
- " --emu-nuked8 Uses Nuked OPL3 v 1.8 emulator\n"
+ " --emu-nuked Uses Nuked OPL3 v 1.8 emulator\n"
+ " --emu-nuked7 Uses Nuked OPL3 v 1.7.4 emulator\n"
" --emu-dosbox Uses DosBox 0.74 OPL3 emulator\n"
#endif
"\n"
@@ -316,8 +316,8 @@ int main(int argc, char **argv)
#ifndef HARDWARE_OPL3
else if(!std::strcmp("--emu-nuked", argv[2]))
emulator = ADLMIDI_EMU_NUKED;
- else if(!std::strcmp("--emu-nuked8", argv[2]))
- emulator = ADLMIDI_EMU_NUKED_8;
+ else if(!std::strcmp("--emu-nuked7", argv[2]))
+ emulator = ADLMIDI_EMU_NUKED_174;
else if(!std::strcmp("--emu-dosbox", argv[2]))
emulator = ADLMIDI_EMU_DOSBOX;
#endif