1
0
mirror of synced 2025-01-21 01:58:52 +01:00

Fixed sound in Darius Burst oops

This commit is contained in:
Nico Giansanti 2019-04-09 14:15:06 +03:00
parent 887add5fb5
commit b4d0d9a052

View File

@ -70,9 +70,19 @@ int __cdecl iDmacDrvRegisterRead(int DeviceId, DWORD CommandCode, LPVOID OutBuff
result = 0x00000000;
break;
case 0x41A4:
case 0x4124:
result = 0x01100000;
break;
case 0x4124:
if (GameDetect::currentGame == GameID::DariusBurst)
{
// Sound volume to maximum
result = 0xFF;
}
else
{
result = 0x01100000;
}
break;
case 0x4140:
if(g_fastIOValues[4] == 1)
{