libretro: use > instead of >= to compare heights.

This commit is contained in:
Brandon Wright 2018-10-24 16:54:55 -05:00
parent e2640286b7
commit 748e4aa40d
1 changed files with 2 additions and 2 deletions

View File

@ -1679,12 +1679,12 @@ bool8 S9xDeinitUpdate(int width, int height)
if (crop_overscan_mode == OVERSCAN_CROP_ON)
{
if (height >= SNES_HEIGHT << 1)
if (height > SNES_HEIGHT << 1)
{
overscan_offset = 15;
height = SNES_HEIGHT << 1;
}
else if (height >= SNES_HEIGHT)
else if (height > SNES_HEIGHT)
{
overscan_offset = 7;
height = SNES_HEIGHT;