Backport r3548 from trunk, add missing parens.

This commit is contained in:
riccardom 2010-04-24 23:28:31 +00:00
parent 8ac535786f
commit 3cdc2ed4ac
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ static void execHardware_hstart()
//this should be 214, but we are going to be generous for games with tight timing
//they shouldnt be changing any textures at 262 but they might accidentally still be at 214
//so..
if(CommonSettings.rigorous_timing && nds.VCount==214 || !CommonSettings.rigorous_timing && nds.VCount==262)
if((CommonSettings.rigorous_timing && nds.VCount==214) || (!CommonSettings.rigorous_timing && nds.VCount==262))
{
gfx3d_VBlankEndSignal(frameSkipper.ShouldSkip3D());
}