From db7d72be919f3b9c3cc4cb253482c3e4773ca5fc Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Thu, 31 Mar 2022 13:59:59 +0200 Subject: [PATCH] update nonfunctional bsnes links --- .../Consoles/Nintendo/BSNES/BsnesCore.cs | 2 +- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.cs index 7e4e3c2a7a..542b59d680 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.cs @@ -8,7 +8,7 @@ using BizHawk.Emulation.Cores.Components.W65816; namespace BizHawk.Emulation.Cores.Nintendo.BSNES { - [PortedCore(CoreNames.Bsnes115, "bsnes team", "v115+", "https://bsnes.dev")] + [PortedCore(CoreNames.Bsnes115, "bsnes team", "v115+", "https://github.com/bsnes-emu/bsnes")] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public unsafe partial class BsnesCore : IEmulator, IDebuggable, IVideoProvider, ISaveRam, IStatable, IInputPollable, IRegionable, ISettable { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index df2e2f7b94..408ffa0bac 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -11,13 +11,13 @@ using BizHawk.Emulation.Cores.Components.W65816; // http://wiki.superfamicom.org/snes/show/Backgrounds -// TODO +// TODO // libsnes needs to be modified to support multiple instances - THIS IS NECESSARY - or else loading one game and then another breaks things // edit - this is a lot of work // wrap dll code around some kind of library-accessing interface so that it doesn't malfunction if the dll is unavailable namespace BizHawk.Emulation.Cores.Nintendo.SNES { - [PortedCore(CoreNames.Bsnes, "byuu", "v87", "http://byuu.org/")] + [PortedCore(CoreNames.Bsnes, "byuu", "v87", "https://github.com/bsnes-emu/bsnes/tree/386ac87d21d14fafd15162d480a111209c9955ba")] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public unsafe partial class LibsnesCore : IEmulator, IVideoProvider, ISaveRam, IStatable, IInputPollable, IRegionable, ICodeDataLogger, IDebuggable, ISettable @@ -28,7 +28,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES LibsnesCore.SnesSettings settings, LibsnesCore.SnesSyncSettings syncSettings) :this(game, rom, null, null, comm, settings, syncSettings) {} - + public LibsnesCore(GameInfo game, byte[] romData, byte[] xmlData, string baseRomPath, CoreComm comm, LibsnesCore.SnesSettings settings, LibsnesCore.SnesSyncSettings syncSettings) {