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:
sudonim1@gmail.com 2011-06-22 00:04:00 +00:00
parent 9dd3cf8078
commit eba05e18c2
1 changed files with 1 additions and 1 deletions

View File

@ -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;