mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Video_Software: Add some debugging logs for PE perf queries
This commit is contained in:
@ -79,6 +79,11 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
|
|||||||
|
|
||||||
if (address <= 0x2e)
|
if (address <= 0x2e)
|
||||||
_uReturnValue = ((u16*)&pereg)[address >> 1];
|
_uReturnValue = ((u16*)&pereg)[address >> 1];
|
||||||
|
|
||||||
|
if (address > 0x16)
|
||||||
|
{
|
||||||
|
ERROR_LOG(PIXELENGINE, "Read from address %#08x, returning %#08x\n", address, _uReturnValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write32(const u32 _iValue, const u32 _iAddress)
|
void Write32(const u32 _iValue, const u32 _iAddress)
|
||||||
|
Reference in New Issue
Block a user