From 7ae3f447d6c76c1b638908e97a774a288d66a2cd Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 30 Mar 2023 20:33:00 -0700 Subject: [PATCH] correct default for showing lightgun cursor (a casual player probably wants this on) fixes c7ea4cbd0e8851adee1c1c773236629544fc7342 --- .../Consoles/Nintendo/BSNES/BsnesCore.ISettable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.ISettable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.ISettable.cs index f7ec2c1862..34078ec21d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesCore.ISettable.cs @@ -93,7 +93,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES public bool CropSGBFrame { get; set; } public bool NoPPUSpriteLimit { get; set; } public bool ShowOverscan { get; set; } - public bool ShowCursor { get; set; } + public bool ShowCursor { get; set; } = true; public BsnesApi.ASPECT_RATIO_CORRECTION AspectRatioCorrection { get; set; } = BsnesApi.ASPECT_RATIO_CORRECTION.Auto; }