diff options
author | Johannes Schickel | 2011-11-20 04:37:21 +0100 |
---|---|---|
committer | Johannes Schickel | 2011-11-20 04:37:21 +0100 |
commit | 0affcfed9e18cf207334407d8e15e658d2153610 (patch) | |
tree | f1407930e951cce87f9eca94bdda1eccbb81ea60 /audio/softsynth | |
parent | 8f58ddefc629a270b4661b5263c07f59ca0560d6 (diff) | |
download | scummvm-rg350-0affcfed9e18cf207334407d8e15e658d2153610.tar.gz scummvm-rg350-0affcfed9e18cf207334407d8e15e658d2153610.tar.bz2 scummvm-rg350-0affcfed9e18cf207334407d8e15e658d2153610.zip |
AUDIO: Very small formatting fix.
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/adlib.cpp | 3 |
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; |