More whitespace fixes
This commit is contained in:
parent
c3133b13b4
commit
6e806aa6e4
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using BizHawk.Common.StringExtensions;
|
||||
|
||||
namespace BizHawk.Emulation.Common
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue