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
|
@ -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…
Reference in New Issue