VideoSoftware: Cleanup PE perf metrics; returning the proper value now.

This commit is contained in:
NeoBrainX 2013-03-01 00:52:15 +01:00
parent 7682ed22c6
commit d0dbcc6369
5 changed files with 57 additions and 27 deletions

View file

@ -81,17 +81,6 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
if (address <= 0x2e)
_uReturnValue = ((u16*)&pereg)[address >> 1];
if (address > 0x16)
{
ERROR_LOG(PIXELENGINE, "addr %#08x, ret %#04x; %#04x%04x, %#04x%04x, %#04x%04x, %#04x%04x, %#04x%04x, %#04x%04x\n", address, _uReturnValue,
pereg.perfZcompInputZcomplocHi, pereg.perfZcompInputZcomplocLo,
pereg.perfZcompOutputZcomplocHi, pereg.perfZcompOutputZcomplocLo,
pereg.perfZcompInputHi, pereg.perfZcompInputLo,
pereg.perfZcompOutputHi, pereg.perfZcompOutputLo,
pereg.perfBlendInputHi, pereg.perfBlendInputLo,
pereg.perfEfbCopyClocksHi, pereg.perfEfbCopyClocksLo);
}
}
void Write32(const u32 _iValue, const u32 _iAddress)