NES: fix off by one in the "Clip Left and Right" setting

This commit is contained in:
goyuken 2014-02-01 16:57:20 +00:00
parent 062d86ff7b
commit 41fe0b56d7
1 changed files with 1 additions and 1 deletions

View File

@ -850,7 +850,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
if (Settings.ClipLeftAndRight)
{
videoProvider.left = 8;
videoProvider.right = 248;
videoProvider.right = 247;
}
else
{