mirror of https://github.com/snes9xgit/snes9x.git
GTK+, libretro: Don't clip between fields.
This commit is contained in:
parent
24c29e281a
commit
b590115594
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue