From 3db06c4aa999de34a851b98502fc902029d0268f Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 8 Apr 2021 14:05:36 +1000 Subject: [PATCH] Remove unsafe keyword where unused or extraneous --- src/BizHawk.BizInvoke/BizInvokerUtilities.cs | 4 ++-- src/BizHawk.BizInvoke/MemoryBlockLinuxPal.cs | 2 +- src/BizHawk.Bizware.BizwareGL/ArtManager.cs | 2 +- src/BizHawk.Bizware.BizwareGL/BitmapBuffer.cs | 12 ++++++------ src/BizHawk.Bizware.BizwareGL/GDIPlusGuiRenderer.cs | 8 ++++---- src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs | 10 +++++----- src/BizHawk.Bizware.OpenTK3/GuiRenderer.cs | 6 +++--- src/BizHawk.Bizware.OpenTK3/IGL_TK.cs | 2 +- .../DisplayManager/DisplaySurface.cs | 6 +++--- src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs | 6 +++--- src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs | 8 ++++---- .../GraphicsImplementations/IGL_GdiPlus.cs | 8 ++++---- .../Nintendo/QuickNES/QuickNES.IMemoryDomains.cs | 2 +- .../Consoles/Nintendo/SNES/LibsnesApi.cs | 4 ++-- .../Consoles/Nintendo/SNES/LibsnesApi_Enums.cs | 2 +- .../Consoles/Nintendo/SNES/LibsnesApi_QUERY.cs | 2 +- .../Consoles/Nintendo/SNES/LibsnesCore.IStatable.cs | 2 +- .../Consoles/Sony/PSX/Octoshock.IDebuggable.cs | 2 +- src/BizHawk.Emulation.Cores/Libretro/LibretroApi.cs | 2 +- .../Libretro/LibretroApi_BRK.cs | 4 ++-- .../Libretro/LibretroApi_Enums.cs | 2 +- .../Waterbox/NymaCore.Controller.cs | 2 +- .../Waterbox/NymaCore.Settings.cs | 2 +- src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs | 2 +- .../Waterbox/WaterboxHostNative.cs | 2 +- .../Waterbox/WaterboxMemoryDomain.cs | 2 +- 26 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/BizHawk.BizInvoke/BizInvokerUtilities.cs b/src/BizHawk.BizInvoke/BizInvokerUtilities.cs index 5702883799..6720f5c7a8 100644 --- a/src/BizHawk.BizInvoke/BizInvokerUtilities.cs +++ b/src/BizHawk.BizInvoke/BizInvokerUtilities.cs @@ -37,7 +37,7 @@ namespace BizHawk.BizInvoke /// Didn't I have code somewhere else to do this already? /// /// - public static unsafe int ComputeClassFieldOffset() + public static int ComputeClassFieldOffset() { var c = new CF(); int ret; @@ -48,7 +48,7 @@ namespace BizHawk.BizInvoke } return ret; } - public static unsafe int ComputeStringOffset() + public static int ComputeStringOffset() { var s = new string(new char[0]); int ret; diff --git a/src/BizHawk.BizInvoke/MemoryBlockLinuxPal.cs b/src/BizHawk.BizInvoke/MemoryBlockLinuxPal.cs index e13f650df3..a38aca0e01 100644 --- a/src/BizHawk.BizInvoke/MemoryBlockLinuxPal.cs +++ b/src/BizHawk.BizInvoke/MemoryBlockLinuxPal.cs @@ -5,7 +5,7 @@ using static BizHawk.BizInvoke.POSIXLibC; namespace BizHawk.BizInvoke { - internal sealed unsafe class MemoryBlockLinuxPal : IMemoryBlockPal + internal sealed class MemoryBlockLinuxPal : IMemoryBlockPal { public ulong Start { get; } private readonly ulong _size; diff --git a/src/BizHawk.Bizware.BizwareGL/ArtManager.cs b/src/BizHawk.Bizware.BizwareGL/ArtManager.cs index 40e7661c5c..1e9ec21bb5 100644 --- a/src/BizHawk.Bizware.BizwareGL/ArtManager.cs +++ b/src/BizHawk.Bizware.BizwareGL/ArtManager.cs @@ -64,7 +64,7 @@ namespace BizHawk.Bizware.BizwareGL /// If the close operation is forever, then internal backup copies of resources will be freed, but it can never be reopened. /// This function may take some time to run, as it is /// - public unsafe void Close(bool forever = true) + public void Close(bool forever = true) { AssertIsOpen(true); IsOpened = false; diff --git a/src/BizHawk.Bizware.BizwareGL/BitmapBuffer.cs b/src/BizHawk.Bizware.BizwareGL/BitmapBuffer.cs index d57c6a4d3c..f048f0812f 100644 --- a/src/BizHawk.Bizware.BizwareGL/BitmapBuffer.cs +++ b/src/BizHawk.Bizware.BizwareGL/BitmapBuffer.cs @@ -80,7 +80,7 @@ namespace BizHawk.Bizware.BizwareGL UnlockBits(CurrLock); } - public unsafe void YFlip() + public void YFlip() { //TODO - could be faster var bmpdata = LockBits(); @@ -107,7 +107,7 @@ namespace BizHawk.Bizware.BizwareGL /// /// Makes sure the alpha channel is clean and optionally y-flips /// - public unsafe void Normalize(bool yflip) + public void Normalize(bool yflip) { var bmpdata = LockBits(); int[] newPixels = new int[Width * Height]; @@ -380,7 +380,7 @@ namespace BizHawk.Bizware.BizwareGL /// /// Loads the BitmapBuffer from a source buffer, which is expected to be the right pixel format /// - public unsafe void LoadFrom(int width, int stride, int height, byte* data, BitmapLoadOptions options) + public void LoadFrom(int width, int stride, int height, byte* data, BitmapLoadOptions options) { bool cleanup = options.CleanupAlpha0; Width = width; @@ -447,7 +447,7 @@ namespace BizHawk.Bizware.BizwareGL /// /// clears this instance to (0,0,0,0) -- without allocating a new array (to avoid GC churn) /// - public unsafe void ClearWithoutAlloc() + public void ClearWithoutAlloc() { //http://techmikael.blogspot.com/2009/12/filling-array-with-default-value.html //this guy says its faster @@ -498,7 +498,7 @@ namespace BizHawk.Bizware.BizwareGL /// /// Dumps this BitmapBuffer to a new System.Drawing.Bitmap /// - public unsafe Bitmap ToSysdrawingBitmap() + public Bitmap ToSysdrawingBitmap() { if (WrappedBitmap != null) return (Bitmap)WrappedBitmap.Clone(); @@ -514,7 +514,7 @@ namespace BizHawk.Bizware.BizwareGL /// Dumps this BitmapBuffer to an existing System.Drawing.Bitmap. /// Some features of this may not be super fast (in particular, 32bpp to 24bpp conversion; we might fix that later with a customized loop) /// - public unsafe void ToSysdrawingBitmap(Bitmap bmp) + public void ToSysdrawingBitmap(Bitmap bmp) { if (WrappedBitmap != null) { diff --git a/src/BizHawk.Bizware.BizwareGL/GDIPlusGuiRenderer.cs b/src/BizHawk.Bizware.BizwareGL/GDIPlusGuiRenderer.cs index ff34bf6901..4dccf11b14 100644 --- a/src/BizHawk.Bizware.BizwareGL/GDIPlusGuiRenderer.cs +++ b/src/BizHawk.Bizware.BizwareGL/GDIPlusGuiRenderer.cs @@ -228,17 +228,17 @@ namespace BizHawk.Bizware.BizwareGL g.Transform = new sd.Drawing2D.Matrix(mat.Row0.X, mat.Row0.Y, mat.Row1.X, mat.Row1.Y, mat.Row3.X, mat.Row3.Y); } - private unsafe void DrawInternal(Art art, float x, float y, float w, float h) + private void DrawInternal(Art art, float x, float y, float w, float h) { DrawInternal(art.BaseTexture, x, y, w, h, art.u0, art.v0, art.u1, art.v1); } - private unsafe void DrawInternal(Texture2d tex, float x, float y, float w, float h) + private void DrawInternal(Texture2d tex, float x, float y, float w, float h) { DrawInternal(tex, x, y, w, h, 0, 0, 1, 1); } - private unsafe void DrawInternal(Texture2d tex, float x, float y, float w, float h, float u0, float v0, float u1, float v1) + private void DrawInternal(Texture2d tex, float x, float y, float w, float h, float u0, float v0, float u1, float v1) { var g = ((dynamic) Gdi).GetCurrentGraphics() as sd.Graphics; PrepDraw(g, tex); @@ -264,7 +264,7 @@ namespace BizHawk.Bizware.BizwareGL g.Transform = new sd.Drawing2D.Matrix(); //.Reset() doesn't work ? ? } - private unsafe void DrawInternal(Art art, float x, float y, float w, float h, bool fx, bool fy) + private void DrawInternal(Art art, float x, float y, float w, float h, bool fx, bool fy) { } diff --git a/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs b/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs index 5af3817b9d..317c9ffb41 100644 --- a/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs +++ b/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs @@ -554,7 +554,7 @@ namespace BizHawk.Bizware.DirectX } } - public unsafe void SetPipelineUniformMatrix(PipelineUniform uniform, Matrix4 mat, bool transpose) + public void SetPipelineUniformMatrix(PipelineUniform uniform, Matrix4 mat, bool transpose) { if (uniform.Owner == null) { @@ -568,7 +568,7 @@ namespace BizHawk.Bizware.DirectX } } - public unsafe void SetPipelineUniformMatrix(PipelineUniform uniform, ref Matrix4 mat, bool transpose) + public void SetPipelineUniformMatrix(PipelineUniform uniform, ref Matrix4 mat, bool transpose) { if (uniform.Owner == null) { @@ -617,7 +617,7 @@ namespace BizHawk.Bizware.DirectX } } - public unsafe void SetPipelineUniform(PipelineUniform uniform, Vector4[] values) + public void SetPipelineUniform(PipelineUniform uniform, Vector4[] values) { if (uniform.Owner == null) return; // uniform was optimized out var v = new SlimDX.Vector4[values.Length]; @@ -688,7 +688,7 @@ namespace BizHawk.Bizware.DirectX } /// GDI+ call returned unexpected data - public unsafe void LoadTextureData(Texture2d tex, BitmapBuffer bmp) + public void LoadTextureData(Texture2d tex, BitmapBuffer bmp) { sdi.BitmapData bmpData = bmp.LockBits(); var tw = tex.Opaque as TextureWrapper; @@ -717,7 +717,7 @@ namespace BizHawk.Bizware.DirectX } /// SlimDX call returned unexpected data - public unsafe BitmapBuffer ResolveTexture2d(Texture2d tex) + public BitmapBuffer ResolveTexture2d(Texture2d tex) { //TODO - lazy create and cache resolving target in RT var target = new Texture(Dev, tex.IntWidth, tex.IntHeight, 1, Usage.None, Format.A8R8G8B8, Pool.SystemMemory); diff --git a/src/BizHawk.Bizware.OpenTK3/GuiRenderer.cs b/src/BizHawk.Bizware.OpenTK3/GuiRenderer.cs index c9729793cc..eee78c579c 100644 --- a/src/BizHawk.Bizware.OpenTK3/GuiRenderer.cs +++ b/src/BizHawk.Bizware.OpenTK3/GuiRenderer.cs @@ -218,7 +218,7 @@ namespace BizHawk.Bizware.OpenTK3 DrawInternal(art, x, y, width, height); } - private unsafe void DrawInternal(Texture2d tex, float x, float y, float w, float h) + private void DrawInternal(Texture2d tex, float x, float y, float w, float h) { Art art = new Art((ArtManager)null); art.Width = w; @@ -258,7 +258,7 @@ namespace BizHawk.Bizware.OpenTK3 } } - private unsafe void PrepDrawSubrectInternal(Texture2d tex) + private void PrepDrawSubrectInternal(Texture2d tex) { if (sTexture != tex) { @@ -330,7 +330,7 @@ namespace BizHawk.Bizware.OpenTK3 #endif } - private unsafe void DrawSubrectInternal(Texture2d tex, float x, float y, float w, float h, float u0, float v0, float u1, float v1) + private void DrawSubrectInternal(Texture2d tex, float x, float y, float w, float h, float u0, float v0, float u1, float v1) { PrepDrawSubrectInternal(tex); EmitRectangleInternal(x, y, w, h, u0, v0, u1, v1); diff --git a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs index 677a60b7f4..6efc2d9543 100644 --- a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs +++ b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs @@ -577,7 +577,7 @@ namespace BizHawk.Bizware.OpenTK3 return ret; } - public unsafe BitmapBuffer ResolveTexture2d(Texture2d tex) + public BitmapBuffer ResolveTexture2d(Texture2d tex) { //note - this is dangerous since it changes the bound texture. could we save it? BindTexture2d(tex); diff --git a/src/BizHawk.Client.Common/DisplayManager/DisplaySurface.cs b/src/BizHawk.Client.Common/DisplayManager/DisplaySurface.cs index c07d5c8a33..14a3d506f1 100644 --- a/src/BizHawk.Client.Common/DisplayManager/DisplaySurface.cs +++ b/src/BizHawk.Client.Common/DisplayManager/DisplaySurface.cs @@ -16,7 +16,7 @@ namespace BizHawk.Client.Common private BitmapData _bmpData; private readonly int[] _pixels; - public unsafe void Clear() + public void Clear() { FromBitmap(false); Util.Memset(PixelPtr, 0, Stride * Height); @@ -37,7 +37,7 @@ namespace BizHawk.Client.Common return Graphics.FromImage(_bmp); } - public unsafe void ToBitmap(bool copy=true) + public void ToBitmap(bool copy = true) { if (_isBitmap) return; _isBitmap = true; @@ -70,7 +70,7 @@ namespace BizHawk.Client.Common private bool _isBitmap; - public unsafe void FromBitmap(bool copy = true) + public void FromBitmap(bool copy = true) { if (!_isBitmap) { diff --git a/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs b/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs index 7496d65d96..bb009bc3d6 100644 --- a/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs +++ b/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs @@ -351,7 +351,7 @@ namespace BizHawk.Client.Common return ret; } - private unsafe class SaveStateStream : Stream, ISpanStream + private sealed class SaveStateStream : Stream, ISpanStream { /// /// @@ -445,7 +445,7 @@ namespace BizHawk.Client.Common } } - private unsafe class LoadStateStream : Stream, ISpanStream + private sealed class LoadStateStream : Stream, ISpanStream { public LoadStateStream(Stream backingStore, long offset, long size, long mask) { @@ -481,7 +481,7 @@ namespace BizHawk.Client.Common return Read(new Span(buffer, offset, count)); } - public unsafe int Read(Span buffer) + public int Read(Span buffer) { long n = Math.Min(_size - _position, buffer.Length); int ret = (int)n; diff --git a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs index f49e5607a8..c13689a8cf 100644 --- a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs +++ b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs @@ -636,7 +636,7 @@ namespace BizHawk.Client.EmuHawk private static bool FAILED(int hr) => hr < 0; - private static unsafe int AVISaveOptions(IntPtr stream, ref AVIWriterImports.AVICOMPRESSOPTIONS opts, IntPtr owner) + private static int AVISaveOptions(IntPtr stream, ref AVIWriterImports.AVICOMPRESSOPTIONS opts, IntPtr owner) { fixed (AVIWriterImports.AVICOMPRESSOPTIONS* _popts = &opts) { @@ -847,7 +847,7 @@ namespace BizHawk.Client.EmuHawk } // todo - why couldnt this take an ISoundProvider? it could do the timekeeping as well.. hmm - public unsafe void AddSamples(short[] samples) + public void AddSamples(short[] samples) { int todo = samples.Length; int idx = 0; @@ -868,7 +868,7 @@ namespace BizHawk.Client.EmuHawk } } - private unsafe void FlushBufferedAudio() + private void FlushBufferedAudio() { int todo = _outStatus.audio_buffered_shorts; int todo_realsamples = todo / 2; @@ -888,7 +888,7 @@ namespace BizHawk.Client.EmuHawk } /// attempted frame resize during encoding - public unsafe void AddFrame(IVideoProvider source) + public void AddFrame(IVideoProvider source) { const int AVIIF_KEYFRAME = 0x00000010; diff --git a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs index 71694da0f3..cd4b536b52 100644 --- a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs +++ b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs @@ -104,11 +104,11 @@ namespace BizHawk.Client.EmuHawk } - public unsafe void SetPipelineUniformMatrix(PipelineUniform uniform, Matrix4 mat, bool transpose) + public void SetPipelineUniformMatrix(PipelineUniform uniform, Matrix4 mat, bool transpose) { } - public unsafe void SetPipelineUniformMatrix(PipelineUniform uniform, ref Matrix4 mat, bool transpose) + public void SetPipelineUniformMatrix(PipelineUniform uniform, ref Matrix4 mat, bool transpose) { } @@ -124,7 +124,7 @@ namespace BizHawk.Client.EmuHawk { } - public unsafe void SetPipelineUniform(PipelineUniform uniform, Vector4[] values) + public void SetPipelineUniform(PipelineUniform uniform, Vector4[] values) { } @@ -334,7 +334,7 @@ namespace BizHawk.Client.EmuHawk rtw.Dispose(); } - public unsafe RenderTarget CreateRenderTarget(int w, int h) + public RenderTarget CreateRenderTarget(int w, int h) { var tw = new GDIPTextureWrapper { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs index 1a6fe975b9..16a3d4d57f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.IMemoryDomains.cs @@ -8,7 +8,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES { public partial class QuickNES { - private unsafe void InitMemoryDomains() + private void InitMemoryDomains() { List mm = new List(); for (int i = 0; ; i++) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi.cs index 8c319182d1..c68d29e8ee 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi.cs @@ -358,10 +358,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES //utilities //TODO: make internal, wrap on the API instead of the comm - public unsafe string GetAscii() { return _getAscii(str); } + public string GetAscii() => _getAscii(str); public bool GetBool() { return value != 0; } - private unsafe string _getAscii(sbyte* ptr) + private string _getAscii(sbyte* ptr) { int len = 0; sbyte* junko = (sbyte*)ptr; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_Enums.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_Enums.cs index 6bb3684796..f2e519a461 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_Enums.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_Enums.cs @@ -1,6 +1,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES { - unsafe partial class LibsnesApi + public partial class LibsnesApi { public enum eMessage : int { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_QUERY.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_QUERY.cs index e74f403546..fc4c242c6f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_QUERY.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesApi_QUERY.cs @@ -142,7 +142,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES } } - public unsafe void QUERY_peek_cpu_regs(out CPURegs ret) + public void QUERY_peek_cpu_regs(out CPURegs ret) { using (_exe.EnterExit()) { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IStatable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IStatable.cs index 8257f2e804..b081d696b6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IStatable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IStatable.cs @@ -3,7 +3,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.SNES { - public unsafe partial class LibsnesCore : IStatable + public partial class LibsnesCore : IStatable { public void SaveStateBinary(BinaryWriter writer) { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.IDebuggable.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.IDebuggable.cs index 76cf83cc27..9fa74b0838 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.IDebuggable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.IDebuggable.cs @@ -124,7 +124,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX OctoshockDll.shock_SetMemCb(psx, mem_cb, mask); } - private unsafe void SetMemoryDomains() + private void SetMemoryDomains() { var mmd = new List(); diff --git a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi.cs b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi.cs index 00ecc42c3a..97fdfb27cc 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi.cs @@ -139,7 +139,7 @@ namespace BizHawk.Emulation.Cores.Libretro } } - public unsafe struct CommStructEnv + public struct CommStructEnv { public retro_system_info retro_system_info; public retro_system_av_info retro_system_av_info; diff --git a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_BRK.cs b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_BRK.cs index 3d73e98302..b3f1360cb9 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_BRK.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_BRK.cs @@ -1,6 +1,6 @@ namespace BizHawk.Emulation.Cores.Libretro { - unsafe partial class LibretroApi + public partial class LibretroApi { private bool Handle_BRK(eMessage msg) { @@ -18,4 +18,4 @@ #endif } } -} \ No newline at end of file +} diff --git a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_Enums.cs b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_Enums.cs index 756e2c0893..f62cf541b6 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_Enums.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/LibretroApi_Enums.cs @@ -2,7 +2,7 @@ namespace BizHawk.Emulation.Cores.Libretro { - unsafe partial class LibretroApi + public partial class LibretroApi { public enum eMessage : int { diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs index 02a0e3c836..38a10e9cc1 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs @@ -11,7 +11,7 @@ using static BizHawk.Emulation.Cores.Waterbox.LibNymaCore; namespace BizHawk.Emulation.Cores.Waterbox { - unsafe partial class NymaCore + public partial class NymaCore { private const int MAX_INPUT_DATA = 256; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs index e834b5007d..bde09ff9ff 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs @@ -9,7 +9,7 @@ using NymaTypes; namespace BizHawk.Emulation.Cores.Waterbox { - unsafe partial class NymaCore : ISettable + public partial class NymaCore : ISettable { public NymaSettingsInfo SettingsInfo { get; private set; } private NymaSettings _settings; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs index 085d2e39c7..d189ddc9d7 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs @@ -64,7 +64,7 @@ namespace BizHawk.Emulation.Cores.Waterbox public bool SkipMemoryConsistencyCheck { get; set; } = false; } - public unsafe class WaterboxHost : IMonitor, IImportResolver, IStatable, IDisposable, ICallbackAdjuster + public sealed class WaterboxHost : IMonitor, IImportResolver, IStatable, IDisposable, ICallbackAdjuster { private IntPtr _nativeHost; private int _enterCount; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHostNative.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHostNative.cs index 572e3440ec..6b03373c68 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHostNative.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHostNative.cs @@ -16,7 +16,7 @@ namespace BizHawk.Emulation.Cores.Waterbox [FieldOffset(1024)] public IntPtr Data; - public unsafe IntPtr GetDataOrThrow() + public IntPtr GetDataOrThrow() { if (ErrorMessageStart != 0) { diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxMemoryDomain.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxMemoryDomain.cs index 556d81dce5..5e0d8a31fb 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxMemoryDomain.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxMemoryDomain.cs @@ -9,7 +9,7 @@ using static BizHawk.Emulation.Cores.Waterbox.LibWaterboxCore; namespace BizHawk.Emulation.Cores.Waterbox { - public abstract unsafe class WaterboxMemoryDomain : MemoryDomain + public abstract class WaterboxMemoryDomain : MemoryDomain { protected readonly IntPtr _data; protected readonly IMonitor _monitor;