Added a xf.numtexgen != bp.numtextgen error log if there is a mismatch detected.

This commit is contained in:
skidau 2014-09-24 10:46:09 +10:00
parent b4399dbdf3
commit 539f270c67

View File

@ -232,6 +232,9 @@ void VertexManager::Flush()
GFX_DEBUGGER_PAUSE_AT(NEXT_FLUSH, true);
if (xfmem.numTexGen.numTexGens != bpmem.genMode.numtexgens)
ERROR_LOG(VIDEO, "xf.numtexgens (%d) does not match bp.numtexgens (%d). Error in command stream.", xfmem.numTexGen.numTexGens, bpmem.genMode.numtexgens.Value());
IsFlushed = true;
}