mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2025-02-16 20:39:15 +01:00
OK, removed the hack. Let's see how it works irl
This commit is contained in:
parent
1d29419840
commit
bc8ae7ea85
@ -129,9 +129,7 @@ void PlaySound( int16_t *Buffer, int count )
|
||||
level = IRQ_Disable();
|
||||
for( i = 0; i < count; i++ )
|
||||
{
|
||||
/* FIXME simonk: 8192 is a Frodo artifact. Not sure why this
|
||||
* is needed */
|
||||
sample = (Buffer[i] & 0xffff) + 8192;
|
||||
sample = (Buffer[i] & 0xffff);
|
||||
dst[mixhead++] = sample | ( sample << 16);
|
||||
if (mixhead == 4000)
|
||||
mixhead = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user