From 826f9469dc34819a58542af2a8a174eb68b8be2e Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 15 Jun 2021 08:58:02 +1000 Subject: [PATCH] Fix code style issues in ZXHawk --- .../Computers/SinclairSpectrum/Media/MediaConverter.cs | 2 +- .../Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs | 4 ++-- .../Computers/SinclairSpectrum/Media/Tape/WAV/WavConverter.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/MediaConverter.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/MediaConverter.cs index 20d2385330..22f7dd9f3d 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/MediaConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/MediaConverter.cs @@ -146,7 +146,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum /// public static int TranslatePause(int pauseInMS) { - var tspms = (double)(69888 * 50) / (double)1000; + const double tspms = 69888.0 * 50.0 / 1000.0; int res = (int)(pauseInMS * tspms); return res; diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs index a5fdf64718..08f266c10f 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs @@ -1501,7 +1501,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum _position += 4; } - #region Not Implemented Yet +#if true // Not Implemented Yet /// /// 0x33 - Hardware Type @@ -1976,7 +1976,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum } - #endregion +#endif /// /// Sets up variables for the next block diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/WAV/WavConverter.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/WAV/WavConverter.cs index fd3d10286b..32bb577359 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/WAV/WavConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/WAV/WavConverter.cs @@ -86,8 +86,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum WavStreamReader reader = new WavStreamReader(stream); - //int rate = (int)(((double)69888 * (double)50) / (double)reader.Header.sampleRate); - int rate = (int)((double)(3500000) / (double)reader.Header.sampleRate); + const double d = /*69888.0*/70000.0 * 50.0; + int rate = (int) (d / reader.Header.sampleRate); int smpCounter = 0; int state = reader.ReadNext();