From 6ff8e61ef717b6b58178eac4b35f09a56c1dfa90 Mon Sep 17 00:00:00 2001 From: arcum42 Date: Thu, 16 Sep 2010 12:56:19 +0000 Subject: [PATCH] GregMiscellaneous: zzogl-pg: 'Transfer error, width exceeded.' spams a little too often for me. I'm making it Debug build only. git-svn-id: http://pcsx2.googlecode.com/svn/branches/GregMiscellaneous@3780 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/zzogl-pg/opengl/HostMemory.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/zzogl-pg/opengl/HostMemory.cpp b/plugins/zzogl-pg/opengl/HostMemory.cpp index 93ce759e48..5527dbd14b 100644 --- a/plugins/zzogl-pg/opengl/HostMemory.cpp +++ b/plugins/zzogl-pg/opengl/HostMemory.cpp @@ -135,8 +135,7 @@ #if defined(ZEROGS_DEVBUILD) if (gs.trxpos.dx + gs.imageWnew > gs.dstbuf.bw) - ZZLog::Warn_Log("Transfer error, width exceeded."); - + ZZLog::Debug_Log("Transfer error, width exceeded."); #endif //bool bHasFlushed = false; @@ -260,10 +259,8 @@ assert(gs.trxpos.sx + gs.imageWnew <= 2048 && gs.trxpos.sy + gs.imageHnew <= 2048); #if defined(ZEROGS_DEVBUILD) - if (gs.trxpos.sx + gs.imageWnew > gs.srcbuf.bw) - ZZLog::Warn_Log("Transfer error, width exceeded."); - + ZZLog::Debug_Log("Transfer error, width exceeded."); #endif gs.imageX = gs.trxpos.sx;