diff --git a/Common.ruleset b/Common.ruleset
index 78ea089945..0003ba643c 100644
--- a/Common.ruleset
+++ b/Common.ruleset
@@ -401,9 +401,6 @@
-
-
-
diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.cs
index 1727746385..bde1e4eceb 100644
--- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.cs
+++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.cs
@@ -17,8 +17,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
Region _region;
public Region region
{
- set { _region = value; SyncRegion(); }
get => _region;
+ set { _region = value; SyncRegion(); }
}
void SyncRegion()
{
diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
index 8ba28abd27..9da23b5e40 100644
--- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
+++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/SNESGraphicsDecoder.cs
@@ -271,44 +271,44 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
public ModeInfo Mode = new ModeInfo();
- public bool Mode1_BG3_Priority { private set; get; }
+ public bool Mode1_BG3_Priority { get; private set; }
- public bool SETINI_Mode7ExtBG { private set; get; }
- public bool SETINI_HiRes { private set; get; }
- public bool SETINI_Overscan { private set; get; }
- public bool SETINI_ObjInterlace { private set; get; }
- public bool SETINI_ScreenInterlace { private set; get; }
+ public bool SETINI_Mode7ExtBG { get; private set; }
+ public bool SETINI_HiRes { get; private set; }
+ public bool SETINI_Overscan { get; private set; }
+ public bool SETINI_ObjInterlace { get; private set; }
+ public bool SETINI_ScreenInterlace { get; private set; }
- public int CGWSEL_ColorMask { private set; get; }
- public int CGWSEL_ColorSubMask { private set; get; }
- public int CGWSEL_AddSubMode { private set; get; }
- public bool CGWSEL_DirectColor { private set; get; }
- public int CGADSUB_AddSub { private set; get; }
- public bool CGADSUB_Half { private set; get; }
+ public int CGWSEL_ColorMask { get; private set; }
+ public int CGWSEL_ColorSubMask { get; private set; }
+ public int CGWSEL_AddSubMode { get; private set; }
+ public bool CGWSEL_DirectColor { get; private set; }
+ public int CGADSUB_AddSub { get; private set; }
+ public bool CGADSUB_Half { get; private set; }
- public int OBSEL_Size { private set; get; }
- public int OBSEL_NameSel { private set; get; }
- public int OBSEL_NameBase { private set; get; }
+ public int OBSEL_Size { get; private set; }
+ public int OBSEL_NameSel { get; private set; }
+ public int OBSEL_NameBase { get; private set; }
- public int OBJTable0Addr { private set; get; }
- public int OBJTable1Addr { private set; get; }
+ public int OBJTable0Addr { get; private set; }
+ public int OBJTable1Addr { get; private set; }
- public bool OBJ_MainEnabled { private set; get; }
- public bool OBJ_SubEnabled { private set; get; }
- public bool OBJ_MathEnabled { private set; get; }
- public bool BK_MathEnabled { private set; get; }
+ public bool OBJ_MainEnabled { get; private set; }
+ public bool OBJ_SubEnabled { get; private set; }
+ public bool OBJ_MathEnabled { get; private set; }
+ public bool BK_MathEnabled { get; private set; }
- public int M7HOFS { private set; get; }
- public int M7VOFS { private set; get; }
- public int M7A { private set; get; }
- public int M7B { private set; get; }
- public int M7C { private set; get; }
- public int M7D { private set; get; }
- public int M7X { private set; get; }
- public int M7Y { private set; get; }
- public int M7SEL_REPEAT { private set; get; }
- public bool M7SEL_HFLIP { private set; get; }
- public bool M7SEL_VFLIP { private set; get; }
+ public int M7HOFS { get; private set; }
+ public int M7VOFS { get; private set; }
+ public int M7A { get; private set; }
+ public int M7B { get; private set; }
+ public int M7C { get; private set; }
+ public int M7D { get; private set; }
+ public int M7X { get; private set; }
+ public int M7Y { get; private set; }
+ public int M7SEL_REPEAT { get; private set; }
+ public bool M7SEL_HFLIP { get; private set; }
+ public bool M7SEL_VFLIP { get; private set; }
public static ScreenInfo GetScreenInfo(LibsnesApi api)
{
diff --git a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/ADPCM.cs b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/ADPCM.cs
index 66b373d239..75f2f480cf 100644
--- a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/ADPCM.cs
+++ b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/ADPCM.cs
@@ -38,8 +38,8 @@ namespace BizHawk.Emulation.Cores.PCEngine
public byte Port180A
{
- set { WritePending = true; WriteTimer = 24; WriteBuffer = value; }
get { ReadPending = true; ReadTimer = 24; return ReadBuffer; }
+ set { WritePending = true; WriteTimer = 24; WriteBuffer = value; }
}
public byte Port180B;