More whitespace fixes

This commit is contained in:
YoshiRulz 2025-03-18 06:34:35 +10:00
parent c3133b13b4
commit 6e806aa6e4
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using BizHawk.Common.StringExtensions;
namespace BizHawk.Emulation.Common

View File

@ -45,7 +45,7 @@ namespace BizHawk.Emulation.Cores.Computers.DOS
// Don't do anything if no writable hard disk was chosen
if (_syncSettings.WriteableHardDisk == WriteableHardDiskOptions.None) return;
unsafe
unsafe
{
fixed (byte* p = data)
{

View File

@ -322,7 +322,7 @@ namespace BizHawk.Emulation.Cores.Computers.DOS
{
// Console.WriteLine($"Reading from {cdRomName} : {lba} : {sectorSize}");
if (! _cdRomFileToReaderMap.ContainsKey( cdRomName ) ) throw new InvalidOperationException($"Unrecognized CD File with name: {cdRomName}");
if (!_cdRomFileToReaderMap.ContainsKey(cdRomName)) throw new InvalidOperationException($"Unrecognized CD File with name: {cdRomName}");
byte[] sectorBuffer = new byte[4096];
var cdRomReader = _cdRomFileToReaderMap[cdRomName];