From 4a16f2899b08a2b53b576176497e31fe9df31f24 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 15 Sep 2024 23:23:10 -0700 Subject: [PATCH] Fix Stella throwing --- src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs index 842dedb5ce..5a9071e675 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs @@ -56,7 +56,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella _settings = lp.Settings ?? new A2600Settings(); _romfile = lp.Roms[0].RomData; - var initResult = Core.stella_init("rom.a26", LoadCallback, _syncSettings.GetNativeSettings(lp.Game)); + var initResult = Core.stella_init("rom.a26", _loadCallback, _syncSettings.GetNativeSettings(lp.Game)); if (!initResult) throw new Exception($"{nameof(Core.stella_init)}() failed");