fix quicknes lua rendering being offset incorrectly sometimes. fixes #498

This commit is contained in:
zeromus 2015-09-16 14:02:36 -05:00
parent 6e16f0c5dc
commit cf1c53f3fb
2 changed files with 5 additions and 0 deletions

View File

@ -116,6 +116,7 @@ namespace BizHawk.Client.EmuHawk
{
var g = _luaSurface == null ? Graphics.FromImage(_nullGraphicsBitmap) : _luaSurface.GetGraphics();
//we don't like CoreComm, right? Someone should find a different way to do this then.
var tx = Global.Emulator.CoreComm.ScreenLogicalOffsetX;
var ty = Global.Emulator.CoreComm.ScreenLogicalOffsetY;
if (tx != 0 || ty != 0)

View File

@ -27,6 +27,10 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
LibQuickNES.qn_set_sprite_limit(Context, _settings.NumSprites);
RecalculateCrops();
CalculatePalette();
CoreComm.ScreenLogicalOffsetX = o.ClipLeftAndRight ? 8 : 0;
CoreComm.ScreenLogicalOffsetY = o.ClipTopAndBottom ? 8 : 0;
return false;
}