GSdx-ogl: Correct DATE log.

This commit is contained in:
lightningterror 2019-01-12 16:43:26 +01:00
parent f73de4c59c
commit 9119e3110d
1 changed files with 1 additions and 1 deletions

View File

@ -1097,7 +1097,7 @@ void GSRendererOGL::DrawPrims(GSTexture* rt, GSTexture* ds, GSTextureCache::Sour
if (m_prim_overlap == PRIM_OVERLAP_NO || m_texture_shuffle) {
// It is way too complex to emulate texture shuffle with DATE. So just use
// the slow but accurate algo
GL_PERF("Slower DATE with alpha %d-%d (%s)", m_vt.m_alpha.min, m_vt.m_alpha.max, m_texture_shuffle ? "texture shuffle" : "no prim overlap");
GL_PERF("DATE with %s", m_texture_shuffle ? "texture shuffle" : "no prim overlap");
m_require_full_barrier = true;
DATE_GL45 = true;
DATE = false;