From b1be2f5937b039faba09341c78382e94116ab4c4 Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 3 Feb 2020 12:55:19 +0300 Subject: [PATCH] bump mgbahawk version --- BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs index 2e32374de5..8a2f6f6e0d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -3,7 +3,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBA { - [Core("mGBA", "endrift", true, true, "0.7.2", "https://mgba.io/", false)] + [Core("mGBA", "endrift", true, true, "0.8", "https://mgba.io/", false)] [ServiceNotApplicable(typeof(IDriveLight), typeof(IRegionable))] public partial class MGBAHawk : IEmulator, IVideoProvider, ISoundProvider, IGBAGPUViewable, ISaveRam, IStatable, IInputPollable, ISettable, @@ -58,7 +58,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA _tracer = new TraceBuffer() { - Header = "ARM7: PC, mnemonic, operands, registers (r0-r16)" + Header = "ARM7: PC, mnemonic, operands, registers" }; _tracecb = new LibmGBA.TraceCallback((msg) => _tracer.Put(_traceInfo(msg))); ser.Register(_tracer);