mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: Fix minor register logging bug (probably not the only bug in this code)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4753 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
9dd3cf8078
commit
eba05e18c2
|
@ -46,7 +46,7 @@ void SPU2writeLog( const char* action, u32 rmem, u16 value )
|
|||
sprintf( dest, "Voice %d %s", voice,ParamNames[param] );
|
||||
RegLog( 2, dest, rmem, core, value );
|
||||
}
|
||||
else if ((omem >= 0x01C0) && (omem < 0x02DE)) // Voice Addressing Params (VA)
|
||||
else if ((omem >= 0x01C0) && (omem < 0x02E0)) // Voice Addressing Params (VA)
|
||||
{
|
||||
const u32 voice = ((omem-0x01C0) / 12);
|
||||
const u32 address = ((omem-0x01C0) % 12)>>1;
|
||||
|
|
Loading…
Reference in New Issue