diff options
author | Kari Salminen | 2007-08-20 10:43:07 +0000 |
---|---|---|
committer | Kari Salminen | 2007-08-20 10:43:07 +0000 |
commit | ef1fca15f05c631b6b716e688c9eb1f3cdee76e3 (patch) | |
tree | 0eba12aa6f27e2f3db75e7e957f7a964e77215b7 /sound | |
parent | ef0bd468a2d53d3865685944c089ab260266d99f (diff) | |
download | scummvm-rg350-ef1fca15f05c631b6b716e688c9eb1f3cdee76e3.tar.gz scummvm-rg350-ef1fca15f05c631b6b716e688c9eb1f3cdee76e3.tar.bz2 scummvm-rg350-ef1fca15f05c631b6b716e688c9eb1f3cdee76e3.zip |
Removed extra commas from lookup-tables' ends.
svn-id: r28676
Diffstat (limited to 'sound')
-rw-r--r-- | sound/softsynth/adlib.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/softsynth/adlib.cpp b/sound/softsynth/adlib.cpp index d46309217a..a0c492874a 100644 --- a/sound/softsynth/adlib.cpp +++ b/sound/softsynth/adlib.cpp @@ -280,7 +280,7 @@ static const byte note_to_f_num[] = { 203, 205, 206, 208, 209, 211, 212, 214, 215, 217, 218, 220, 222, 223, 225, 226, 228, 230, 231, 233, 235, 236, 238, 240, - 242, 243, 245, 247, 249, 251, 252, 254, + 242, 243, 245, 247, 249, 251, 252, 254 }; static const byte map_gm_to_fm[128][30] = { @@ -472,7 +472,7 @@ static const byte gm_percussion_lookup[128] = { 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x21, 0x22, 0x23, 0xFF, 0xFF, 0x24, 0x25, 0xFF, 0xFF, 0xFF, 0x26, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; static byte lookup_table[64][32]; |