mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
XFMem: Don't warn on writes of zero to unknown registers.
This commit is contained in:
@ -184,6 +184,7 @@ static void XFRegWritten(int transferSize, u32 baseAddress, DataReader src)
|
||||
case 0x1017:
|
||||
|
||||
default:
|
||||
if (newValue != 0) // Ignore writes of zero.
|
||||
WARN_LOG(VIDEO, "Unknown XF Reg: %x=%x", address, newValue);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user