diff --git a/Source/Core/VideoCommon/XFStructs.cpp b/Source/Core/VideoCommon/XFStructs.cpp index fac5a89053..ecf1eda08e 100644 --- a/Source/Core/VideoCommon/XFStructs.cpp +++ b/Source/Core/VideoCommon/XFStructs.cpp @@ -184,7 +184,8 @@ static void XFRegWritten(int transferSize, u32 baseAddress, DataReader src) case 0x1017: default: - WARN_LOG(VIDEO, "Unknown XF Reg: %x=%x", address, newValue); + if (newValue != 0) // Ignore writes of zero. + WARN_LOG(VIDEO, "Unknown XF Reg: %x=%x", address, newValue); break; }