From c2d5a9c9316a4aa3af2c7265cae13b3e366185fd Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 4 Dec 2022 01:58:53 +1000 Subject: [PATCH] Banish empty conditional blocks --- src/BizHawk.Bizware.OpenTK3/IGL_TK.cs | 11 +++-------- src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs | 4 +--- .../tools/TAStudio/TAStudio.cs | 4 +--- .../AmstradCPC/Hardware/Disk/NECUPD765.FDC.cs | 8 +++++--- .../Hardware/Disk/NECUPD765.FDC.cs | 14 ++++++++++---- .../Nintendo/NES/Boards/Namcot1xx/Mapper088.cs | 3 +-- .../Nintendo/NES/Boards/Namcot1xx/Mapper112.cs | 3 +-- .../Nintendo/NES/Boards/Namcot1xx/Mapper154.cs | 3 +-- .../DiscFormats/CUE/CUE_Compile.cs | 7 +------ .../Synthesize_DiscTOC_From_RawTOCEntries_Job.cs | 2 +- 10 files changed, 25 insertions(+), 34 deletions(-) diff --git a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs index a5b68bcf16..cc309c072a 100644 --- a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs +++ b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs @@ -618,15 +618,10 @@ namespace BizHawk.Bizware.OpenTK3 ret.Row1.Y = -1.0f; ret.Row3.X = -(float)dims.Width * 0.5f; ret.Row3.Y = (float)dims.Height * 0.5f; - if (autoflip) + if (autoflip && _currRenderTarget is not null) // flip as long as we're not a final render target { - if (_currRenderTarget == null) { } - else - { - //flip as long as we're not a final render target - ret.Row1.Y = 1.0f; - ret.Row3.Y *= -1; - } + ret.Row1.Y = 1.0f; + ret.Row3.Y *= -1; } return ret; } diff --git a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs index f9c918eedf..8a718bfce4 100644 --- a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs +++ b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs @@ -333,9 +333,7 @@ namespace BizHawk.Client.EmuHawk if (a_bits == 16) bytes = 2; else if (a_bits == 8) bytes = 1; else throw new InvalidOperationException($"only 8/16 bits audio are supported by {nameof(AviWriter)} and you chose: {a_bits}"); - if (a_channels == 1) { } - else if (a_channels == 2) { } - else throw new InvalidOperationException($"only 1/2 channels audio are supported by {nameof(AviWriter)} and you chose: {a_channels}"); + if (a_channels is not (1 or 2)) throw new InvalidOperationException($"only 1/2 channels audio are supported by {nameof(AviWriter)} and you chose: {a_channels}"); wfex.Init(); wfex.nBlockAlign = (ushort)(bytes * a_channels); wfex.nChannels = (ushort)a_channels; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 1e397190b7..1ca7b7ce32 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -605,9 +605,7 @@ namespace BizHawk.Client.EmuHawk MovieSession.SetMovieController(Emulator.ControllerDefinition); // hack, see interface comment tasMovie.ClearChanges(); // Don't ask to save changes here. tasMovie.Save(); - if (HandleMovieLoadStuff(tasMovie)) - { - } + _ = HandleMovieLoadStuff(tasMovie); // let's not keep this longer than we actually need // the user will be prompted to enter a proper name // when they want to save diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.FDC.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.FDC.cs index 5bddd1f04b..ebef7e3f14 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.FDC.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/Disk/NECUPD765.FDC.cs @@ -637,8 +637,10 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC int buffPos = 0; int sectorSize = 0; +#pragma warning disable CS0219 int maxTransferCap = 0; - if (maxTransferCap > 0) { } +// if (maxTransferCap > 0) { } +#pragma warning restore CS0219 // calculate requested size of data required if (ActiveCommandParams.SectorSize == 0) @@ -950,8 +952,8 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC int buffPos = 0; int sectorSize = 0; - int maxTransferCap = 0; - if (maxTransferCap > 0) { } + int maxTransferCap = 0; // why doesn't this get flagged for CS0219? +// if (maxTransferCap > 0) { } // calculate requested size of data required if (ActiveCommandParams.SectorSize == 0) diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs index 41fafc7bab..4cc6c9e04a 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs @@ -337,8 +337,10 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum } int buffPos = 0; - int sectorSize = 0; + int sectorSize = 0; // why doesn't this get flagged for CS0219? +#pragma warning disable CS0219 int maxTransferCap = 0; +#pragma warning restore CS0219 // calculate requested size of data required if (ActiveCommandParams.SectorSize == 0) @@ -353,7 +355,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum if (!CMD_FLAG_MF) maxTransferCap = 3328; - if (maxTransferCap == 0) { } +// if (maxTransferCap is 0) { } } else { @@ -646,8 +648,10 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum int buffPos = 0; int sectorSize = 0; +#pragma warning disable CS0219 int maxTransferCap = 0; - if (maxTransferCap > 0) { } +// if (maxTransferCap > 0) { } +#pragma warning restore CS0219 // calculate requested size of data required if (ActiveCommandParams.SectorSize == 0) @@ -959,8 +963,10 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum int buffPos = 0; int sectorSize = 0; +#pragma warning disable CS0219 int maxTransferCap = 0; - if (maxTransferCap > 0) { } +// if (maxTransferCap > 0) { } +#pragma warning restore CS0219 // calculate requested size of data required if (ActiveCommandParams.SectorSize == 0) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper088.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper088.cs index 484936a031..c2014895c6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper088.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper088.cs @@ -58,8 +58,7 @@ } public override void WritePpu(int addr, byte value) { - if (addr < 0x2000) { } - else base.WritePpu(addr, value); + if (addr >= 0x2000) base.WritePpu(addr, value); } } } diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper112.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper112.cs index c3f4670047..4fb147c36c 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper112.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper112.cs @@ -134,8 +134,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } public override void WritePpu(int addr, byte value) { - if (addr < 0x2000) { } - else base.WritePpu(addr, value); + if (addr >= 0x2000) base.WritePpu(addr, value); } public override byte ReadPrg(int addr) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper154.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper154.cs index 0a2d30cb6a..f3d413814f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper154.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Namcot1xx/Mapper154.cs @@ -47,8 +47,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } public override void WritePpu(int addr, byte value) { - if (addr < 0x2000) { } - else base.WritePpu(addr, value); + if (addr >= 0x2000) base.WritePpu(addr, value); } public override void WritePrg(int addr, byte value) diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs index ddace068a9..b35b523629 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs @@ -288,12 +288,7 @@ namespace BizHawk.Emulation.DiscSystem.CUE private void CreateTrack1Pregap() { - if (OUT_CompiledCueTracks[1].PregapLength.Sector == 0) { } - else if (OUT_CompiledCueTracks[1].PregapLength.Sector == 150) { } - else - { - Error("Track 1 specified an illegal pregap. It's being ignored and replaced with a 00:02:00 pregap"); - } + if (OUT_CompiledCueTracks[1].PregapLength.Sector is not (0 or 150)) Error("Track 1 specified an illegal pregap. It's being ignored and replaced with a 00:02:00 pregap"); OUT_CompiledCueTracks[1].PregapLength = new Timestamp(150); } diff --git a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTOC_From_RawTOCEntries_Job.cs b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTOC_From_RawTOCEntries_Job.cs index 5ed558c22c..512bbeb181 100644 --- a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTOC_From_RawTOCEntries_Job.cs +++ b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTOC_From_RawTOCEntries_Job.cs @@ -79,7 +79,7 @@ namespace BizHawk.Emulation.DiscSystem //this is speculative: //well, nothing to be done here.. - if (ret.FirstRecordedTrackNumber == -1) { } +// if (ret.FirstRecordedTrackNumber == -1) { } if (ret.LastRecordedTrackNumber == -1) { ret.LastRecordedTrackNumber = maxFoundTrack; } if (ret.Session1Format == SessionFormat.None) ret.Session1Format = SessionFormat.Type00_CDROM_CDDA;