From 56d66ca55534bf32a9307bcf497b19ef73a1cf86 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Wed, 7 Dec 2022 19:54:59 -0800 Subject: [PATCH] add reset support to libretro, resolves #3482 --- src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs b/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs index 90ab0f0db0..3cd6faa42e 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs @@ -234,6 +234,11 @@ namespace BizHawk.Emulation.Cores.Libretro private void FrameAdvancePrep(IController controller) { UpdateInput(controller); + + if (controller.IsPressed("Reset")) + { + api.retro_reset(); + } } private void FrameAdvancePost(bool render, bool renderSound) @@ -320,6 +325,8 @@ namespace BizHawk.Emulation.Cores.Libretro CategoryLabels[buttonName] = CAT_KEYBOARD; } + BoolButtons.Add("Reset"); + MakeImmutable(); }