Video_Software: Some more debugging logs.

This commit is contained in:
NeoBrainX 2012-08-31 21:30:12 +02:00
parent 3d56ce18fb
commit 54947b1e22
1 changed files with 7 additions and 1 deletions

View File

@ -82,7 +82,13 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
if (address > 0x16)
{
ERROR_LOG(PIXELENGINE, "addr %#08x, ret %#08x\n", address, _uReturnValue);
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);
}
}