NES: fix off by one in the "Clip Left and Right" setting
This commit is contained in:
parent
062d86ff7b
commit
41fe0b56d7
|
@ -850,7 +850,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
if (Settings.ClipLeftAndRight)
|
||||
{
|
||||
videoProvider.left = 8;
|
||||
videoProvider.right = 248;
|
||||
videoProvider.right = 247;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue