From f98476b82586d2a6f2d7e5037a494dcaf3b36fc5 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 2 Jun 2025 03:56:10 +1000 Subject: [PATCH] Fix code style warnings in `LibDSDA.cs` fixes f0564300c --- src/BizHawk.Emulation.Cores/Computers/Doom/LibDSDA.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/Doom/LibDSDA.cs b/src/BizHawk.Emulation.Cores/Computers/Doom/LibDSDA.cs index 05bcc44a16..89763a874d 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Doom/LibDSDA.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Doom/LibDSDA.cs @@ -78,7 +78,7 @@ namespace BizHawk.Emulation.Cores.Computers.Doom public int MapOverlay; public int PlayerPointOfView; } - + [StructLayout(LayoutKind.Sequential)] public struct VideoInfo { @@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.Computers.Doom public int PaletteSize; public IntPtr PaletteBuffer; public IntPtr VideoBuffer; - }; + } [BizImport(CallingConvention.Cdecl)] public abstract void dsda_get_audio(ref int n, ref IntPtr buffer);