Remove redundant semicolons

This commit is contained in:
YoshiRulz 2022-05-18 15:04:13 +10:00
parent 8ca1e4a080
commit aa135fc0dd
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 6 additions and 6 deletions

View File

@ -282,7 +282,7 @@ namespace BizHawk.Emulation.Cores.Libretro
{
NTSC = 0,
PAL = 1,
};
}
public enum RETRO_MEMORY : uint
{
@ -297,14 +297,14 @@ namespace BizHawk.Emulation.Cores.Libretro
{
public IntPtr key;
public IntPtr value;
};
}
[StructLayout(LayoutKind.Sequential)]
public struct retro_message
{
public IntPtr msg;
public uint frames;
};
}
[StructLayout(LayoutKind.Sequential)]
public struct retro_system_info
@ -314,7 +314,7 @@ namespace BizHawk.Emulation.Cores.Libretro
public IntPtr valid_extensions;
public bool need_fullpath;
public bool block_extract;
};
}
[StructLayout(LayoutKind.Sequential)]
public struct retro_game_info
@ -323,7 +323,7 @@ namespace BizHawk.Emulation.Cores.Libretro
public IntPtr data;
public long size;
public IntPtr meta;
};
}
[StructLayout(LayoutKind.Sequential)]
public struct retro_system_av_info
@ -338,7 +338,7 @@ namespace BizHawk.Emulation.Cores.Libretro
// struct retro_system_timing
public double fps;
public double sample_rate;
};
}
[BizImport(cc)]
public abstract void retro_init();