bleh, forgot to check this in

This commit is contained in:
adelikat 2017-04-25 11:17:35 -05:00
parent e72aceccdc
commit 010c04f421
1 changed files with 3 additions and 3 deletions

View File

@ -79,8 +79,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
GameCode = Encoding.ASCII.GetString(file, 0xac, 4);
Console.WriteLine("Game code \"{0}\"", GameCode);
savebuff = new byte[LibVBANext.BinStateSize(Core)];
savebuff2 = new byte[savebuff.Length + 13];
_savebuff = new byte[LibVBANext.BinStateSize(Core)];
_savebuff2 = new byte[_savebuff.Length + 13];
InitMemoryDomains();
InitRegisters();
InitCallbacks();
@ -106,7 +106,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
SyncTraceCallback();
IsLagFrame = LibVBANext.FrameAdvance(Core, GetButtons(Controller), videobuff, soundbuff, out numsamp, videopalette);
IsLagFrame = LibVBANext.FrameAdvance(Core, GetButtons(Controller), _videobuff, _soundbuff, out _numsamp, _videopalette);
if (IsLagFrame)
LagCount++;