aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/adlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio/softsynth/adlib.cpp')
-rw-r--r--audio/softsynth/adlib.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/softsynth/adlib.cpp b/audio/softsynth/adlib.cpp
index 4025a667ac..32a5f4a910 100644
--- a/audio/softsynth/adlib.cpp
+++ b/audio/softsynth/adlib.cpp
@@ -1471,8 +1471,7 @@ void MidiDriver_ADLIB::adlib_setup_channel(int chan, AdLibInstrument *instr, byt
adlib_write((byte)chan + 0xC0, instr->feedback);
}
-void MidiDriver_ADLIB::adlib_note_on_ex(int chan, byte note, int mod)
-{
+void MidiDriver_ADLIB::adlib_note_on_ex(int chan, byte note, int mod) {
int code;
assert(chan >= 0 && chan < 9);
code = (note << 7) + mod;