correct default for showing lightgun cursor (a casual player probably wants this on)

fixes c7ea4cbd0e
This commit is contained in:
CasualPokePlayer 2023-03-30 20:33:00 -07:00
parent c7ea4cbd0e
commit 7ae3f447d6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}