aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs2
-rw-r--r--Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs2
-rw-r--r--Ryujinx.Graphics.Shader/TextureFormat.cs2
-rw-r--r--Ryujinx.Graphics.Vulkan/Shader.cs2
-rw-r--r--Ryujinx.Graphics.Vulkan/TextureBuffer.cs2
-rw-r--r--Ryujinx.HLE/FileSystem/ContentManager.cs4
6 files changed, 7 insertions, 7 deletions
diff --git a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs b/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
index 92b54902..5259760d 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 abebb4b7..cdd645a3 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 fb4e5b03..ecdd15cb 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 2ced4bea..db13af31 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 b2c5ff18..c7495610 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 2544cdda..24945af2 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;
}