fix ADPCM sounds in Gemini Wing (d_tecmo)

This commit is contained in:
dinkc64 2015-02-21 07:54:41 +00:00
parent a64075f77c
commit ee5cf780a0
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ void __fastcall rygar_sound_write(UINT16 address, UINT8 data)
case 0xc800: case 0xc800:
case 0xe000: case 0xe000:
if (DrvHasADPCM) { if (DrvHasADPCM) {
MSM5205SetRoute(0, (data & 0x0f) / 15, BURN_SND_ROUTE_BOTH); MSM5205SetRoute(0, (double)(data & 0x0f) / 15, BURN_SND_ROUTE_BOTH);
} }
return; return;