mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
Fix sound buffer addresses in Zelda UCode HLE.
The code previously mixed up the addresses of the right and left buffer; testing shows that the address of the left buffer comes first.
This commit is contained in:
parent
ae9367a89b
commit
8dad1be319
1 changed files with 1 additions and 1 deletions
|
@ -480,8 +480,8 @@ void CUCode_Zelda::ExecuteList()
|
|||
// Addresses for right & left buffers in main memory
|
||||
// Each buffer is 160 bytes long. The number of (both left & right) buffers
|
||||
// is set by the first mail of the list.
|
||||
m_RightBuffersAddr = Read32() & 0x7FFFFFFF;
|
||||
m_LeftBuffersAddr = Read32() & 0x7FFFFFFF;
|
||||
m_RightBuffersAddr = Read32() & 0x7FFFFFFF;
|
||||
|
||||
DEBUG_LOG(DSPHLE, "DsyncFrame");
|
||||
// These alternate between three sets of mixing buffers. They are all three fairly near,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue