[XMA] Removed spam message about 0x601 register.

This will make logs more readable and little lighter

Todo: Find out what that register means. It doesn't even have description.
My best guess is that it is used for sync?
This commit is contained in:
Gliniak 2020-01-18 09:07:19 +01:00 committed by illusion
parent 7477f020bc
commit 72880bf383
1 changed files with 3 additions and 1 deletions

View File

@ -285,7 +285,9 @@ void XmaDecoder::WriteRegister(uint32_t addr, uint32_t value) {
} else {
switch (r) {
default: {
if (r != 0x601) {
XELOGE("XMA: Write to unhandled register (%.4X): %.8X", r, value);
}
break;
}
#pragma warning(suppress : 4065)