VideoCommon: reduce level of debug output

This commit is contained in:
booto 2015-07-27 10:22:40 +08:00
parent e805e05ff5
commit 86dce8b0f7
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]);
}