Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Video_Software: Fix ZComploc option breaking stuff.
  • Loading branch information
neobrain committed Feb 15, 2013
1 parent fb0102d commit 6fd96a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoSoftware/Src/Tev.cpp
Expand Up @@ -784,7 +784,7 @@ void Tev::Draw()
output[BLU_C] = (output[BLU_C] * invFog + fogInt * bpmem.fog.color.b) >> 8;
}

bool late_ztest = !bpmem.zcontrol.early_ztest || g_SWVideoConfig.bZComploc;
bool late_ztest = !bpmem.zcontrol.early_ztest || !g_SWVideoConfig.bZComploc;
if (late_ztest && bpmem.zmode.testenable)
{
if (!EfbInterface::ZCompare(Position[0], Position[1], Position[2]))
Expand Down

0 comments on commit 6fd96a1

Please sign in to comment.