diff --git a/src/BizHawk.Client.EmuHawk/RetroAchievements/RCheevos.cs b/src/BizHawk.Client.EmuHawk/RetroAchievements/RCheevos.cs index c86764d2b0..eb81498ef7 100644 --- a/src/BizHawk.Client.EmuHawk/RetroAchievements/RCheevos.cs +++ b/src/BizHawk.Client.EmuHawk/RetroAchievements/RCheevos.cs @@ -283,7 +283,7 @@ namespace BizHawk.Client.EmuHawk { var buffer = new byte[(int)size]; _lib.rc_runtime_serialize_progress(buffer, _runtime, IntPtr.Zero); - using var file = File.OpenWrite(path + ".rap"); + using var file = File.Create(path + ".rap"); file.Write(buffer, 0, buffer.Length); } } @@ -697,4 +697,4 @@ namespace BizHawk.Client.EmuHawk #endif } } -} \ No newline at end of file +} diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs index b947327d2f..fddf80264a 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs @@ -438,8 +438,8 @@ namespace BizHawk.Emulation.DiscSystem var buf2448 = new byte[2448]; var dsr = new DiscSectorReader(disc); - using var imgFile = File.OpenWrite(imgPath); - using var subFile = File.OpenWrite(subPath); + using var imgFile = File.Create(imgPath); + using var subFile = File.Create(subPath); var nLBA = disc.Sessions[disc.Sessions.Count - 1].LeadoutLBA; for (var lba = 0; lba < nLBA; lba++) { diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs index 640068da2b..69c0b10e14 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs @@ -878,7 +878,7 @@ namespace BizHawk.Emulation.DiscSystem throw new NotSupportedException("CHD does not support multisession discs"); } - using var fs = File.OpenWrite(path); + using var fs = File.Create(path); using var bw = new BinaryWriter(fs); // write header