mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
ym2413.c - Reverted KSL value order to 0, 1.5, 3.0, 6.0dB/oct after testing with a real YM2413 [Wouter Vermaelen]
This commit is contained in:
parent
52d4a43e1b
commit
5aacd1e489
1 changed files with 2 additions and 2 deletions
|
@ -323,8 +323,8 @@ static const UINT32 ksl_tab[8*16]=
|
|||
};
|
||||
#undef DV
|
||||
|
||||
/* 0 / 3.0 / 1.5 / 6.0 dB/OCT */
|
||||
static const UINT32 ksl_shift[4] = { 31, 1, 2, 0 };
|
||||
/* 0 / 1.5 / 3.0 / 6.0 dB/OCT, confirmed on a real YM2413 (the application manual is incorrect) */
|
||||
static const UINT32 ksl_shift[4] = { 31, 2, 1, 0 };
|
||||
|
||||
|
||||
/* sustain level table (3dB per step) */
|
||||
|
|
Loading…
Reference in a new issue