GTK+, libretro: Don't clip between fields.

This commit is contained in:
Brandon Wright 2018-11-01 17:12:59 -05:00
parent 24c29e281a
commit b590115594
2 changed files with 3 additions and 3 deletions

View File

@ -1652,7 +1652,7 @@ S9xRealDeinitUpdate (int width, int height)
} }
if (height == SNES_HEIGHT * 2) if (height == SNES_HEIGHT * 2)
{ {
yoffset = -15; yoffset = -16;
height = SNES_HEIGHT_EXTENDED * 2; height = SNES_HEIGHT_EXTENDED * 2;
} }
} }
@ -1665,7 +1665,7 @@ S9xRealDeinitUpdate (int width, int height)
} }
if (height == SNES_HEIGHT_EXTENDED * 2) if (height == SNES_HEIGHT_EXTENDED * 2)
{ {
yoffset = 15; yoffset = 14;
height = SNES_HEIGHT * 2; height = SNES_HEIGHT * 2;
} }
} }

View File

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