mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Fixed the audio streaming "blocks left" register by making it zero-based. Fixes DreamMix TV World Fighters (GameCube).
This commit is contained in:
@ -354,7 +354,7 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
|
|||||||
|
|
||||||
// AI
|
// AI
|
||||||
case AUDIO_DMA_BLOCKS_LEFT:
|
case AUDIO_DMA_BLOCKS_LEFT:
|
||||||
_uReturnValue = g_audioDMA.BlocksLeft;
|
_uReturnValue = g_audioDMA.BlocksLeft - 1; // AUDIO_DMA_BLOCKS_LEFT is zero based
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case AUDIO_DMA_START_LO:
|
case AUDIO_DMA_START_LO:
|
||||||
|
Reference in New Issue
Block a user