diff --git a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs b/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
index 92b54902d1..5259760de4 100644
--- a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
+++ b/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
@@ -24,7 +24,7 @@ namespace Ryujinx.Common.SystemInfo
             if (sysctlbyname("hw.memsize", ref totalRAM) != 0)  // Bytes
             {
                 totalRAM = 0;
-            };
+            }
 
             CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
             RamTotal = totalRAM;
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs b/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
index abebb4b7c2..cdd645a38b 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
+++ b/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
@@ -1187,7 +1187,7 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
                         if (cm.Mb.Corrupted)
                         {
                             cm.Error.InternalError(CodecErr.CodecCorruptFrame, "Failed to decode tile data");
-                        };
+                        }
                     }
                 }
             }
diff --git a/Ryujinx.Graphics.Shader/TextureFormat.cs b/Ryujinx.Graphics.Shader/TextureFormat.cs
index fb4e5b0300..ecdd15cb28 100644
--- a/Ryujinx.Graphics.Shader/TextureFormat.cs
+++ b/Ryujinx.Graphics.Shader/TextureFormat.cs
@@ -120,7 +120,7 @@ namespace Ryujinx.Graphics.Shader
                 case TextureFormat.R16G16B16A16Sint:
                 case TextureFormat.R32G32B32A32Sint:
                     return VariableType.S32;
-            };
+            }
 
             return VariableType.F32;
         }
diff --git a/Ryujinx.Graphics.Vulkan/Shader.cs b/Ryujinx.Graphics.Vulkan/Shader.cs
index 2ced4bea7e..db13af3140 100644
--- a/Ryujinx.Graphics.Vulkan/Shader.cs
+++ b/Ryujinx.Graphics.Vulkan/Shader.cs
@@ -131,7 +131,7 @@ namespace Ryujinx.Graphics.Vulkan
                     return ShaderKind.GlslFragmentShader;
                 case ShaderStage.Compute:
                     return ShaderKind.GlslComputeShader;
-            };
+            }
 
             Logger.Debug?.Print(LogClass.Gpu, $"Invalid {nameof(ShaderStage)} enum value: {stage}.");
 
diff --git a/Ryujinx.Graphics.Vulkan/TextureBuffer.cs b/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
index b2c5ff184e..c74956100b 100644
--- a/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
+++ b/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
@@ -111,7 +111,7 @@ namespace Ryujinx.Graphics.Vulkan
             _offset = buffer.Offset;
             _size = buffer.Size;
 
-            ReleaseImpl();;
+            ReleaseImpl();
         }
 
         public BufferView GetBufferView(CommandBufferScoped cbs)
diff --git a/Ryujinx.HLE/FileSystem/ContentManager.cs b/Ryujinx.HLE/FileSystem/ContentManager.cs
index 2544cdda9c..24945af283 100644
--- a/Ryujinx.HLE/FileSystem/ContentManager.cs
+++ b/Ryujinx.HLE/FileSystem/ContentManager.cs
@@ -766,7 +766,7 @@ namespace Ryujinx.HLE.FileSystem
                                 metaEntries = meta.MetaEntries;
 
                                 updateNcas.Remove(SystemUpdateTitleId);
-                            };
+                            }
                         }
                     }
 
@@ -905,7 +905,7 @@ namespace Ryujinx.HLE.FileSystem
                             {
                                 metaEntries = meta.MetaEntries;
                             }
-                        };
+                        }
 
                         continue;
                     }