Merge pull request #2780 from booto/reduce_log

VideoCommon: reduce level of debug output
This commit is contained in:
Lioncash 2015-07-26 22:55:39 -04:00
commit 558abae760
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ static void BPWritten(const BPCmd& bp)
}
u32 stride = bpmem.copyMipMapStrideChannels << 5;
WARN_LOG(VIDEO, "RenderToXFB: destAddr: %08x | srcRect {%d %d %d %d} | fbWidth: %u | fbStride: %u | fbHeight: %u",
DEBUG_LOG(VIDEO, "RenderToXFB: destAddr: %08x | srcRect {%d %d %d %d} | fbWidth: %u | fbStride: %u | fbHeight: %u",
destAddr, srcRect.left, srcRect.top, srcRect.right, srcRect.bottom, bpmem.copyTexSrcWH.x + 1, stride, height);
Renderer::RenderToXFB(destAddr, srcRect, stride, height, s_gammaLUT[PE_copy.gamma]);
}