Skip to content

Commit

Permalink
COMMON: remove unnecessary commas
Browse files Browse the repository at this point in the history
  • Loading branch information
athrxx committed Feb 21, 2012
1 parent ab5c3e2 commit 9f19bac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions audio/mididrv.cpp
Expand Up @@ -59,17 +59,17 @@ static const struct {
uint32 type;
const char *guio;
} GUIOMapping[] = {
{ MT_PCSPK, GUIO_MIDIPCSPK, },
{ MT_CMS, GUIO_MIDICMS, },
{ MT_PCJR, GUIO_MIDIPCJR, },
{ MT_ADLIB, GUIO_MIDIADLIB, },
{ MT_C64, GUIO_MIDIC64, },
{ MT_AMIGA, GUIO_MIDIAMIGA, },
{ MT_APPLEIIGS, GUIO_MIDIAPPLEIIGS, },
{ MT_TOWNS, GUIO_MIDITOWNS, },
{ MT_PC98, GUIO_MIDIPC98, },
{ MT_GM, GUIO_MIDIGM, },
{ MT_MT32, GUIO_MIDIMT32, },
{ MT_PCSPK, GUIO_MIDIPCSPK },
{ MT_CMS, GUIO_MIDICMS },
{ MT_PCJR, GUIO_MIDIPCJR },
{ MT_ADLIB, GUIO_MIDIADLIB },
{ MT_C64, GUIO_MIDIC64 },
{ MT_AMIGA, GUIO_MIDIAMIGA },
{ MT_APPLEIIGS, GUIO_MIDIAPPLEIIGS },
{ MT_TOWNS, GUIO_MIDITOWNS },
{ MT_PC98, GUIO_MIDIPC98 },
{ MT_GM, GUIO_MIDIGM },
{ MT_MT32, GUIO_MIDIMT32 },
{ 0, 0 },
};

Expand Down
2 changes: 1 addition & 1 deletion audio/softsynth/cms.cpp
Expand Up @@ -41,7 +41,7 @@ static const byte envelope[8][64] = {
{15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, },
15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15 },
/* single decay */
{15,14,13,12,11,10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
Expand Down

0 comments on commit 9f19bac

Please sign in to comment.