gsdx: only enable "please fix me" message on debug build

This commit is contained in:
Gregory Hainaut 2016-01-02 18:53:15 +01:00
parent 8b5e22dd7d
commit fc98fc9781
1 changed files with 4 additions and 0 deletions

View File

@ -283,7 +283,9 @@ void GSRendererDX::DrawPrims(GSTexture* rt, GSTexture* ds, GSTextureCache::Sourc
om_bsel.wr = 1;
}
else if ((fbmask & 0xFF) != 0xFF) {
#ifdef _DEBUG
fprintf(stderr, "Please fix me! wb %d wr %d\n", om_bsel.wb, om_bsel.wr);
#endif
//ASSERT(0);
}
@ -295,7 +297,9 @@ void GSRendererDX::DrawPrims(GSTexture* rt, GSTexture* ds, GSTextureCache::Sourc
om_bsel.wg = 1;
}
else if ((fbmask & 0xFF) != 0xFF) {
#ifdef _DEBUG
fprintf(stderr, "Please fix me! wa %d wg %d\n", om_bsel.wa, om_bsel.wg);
#endif
//ASSERT(0);
}