Removed extra semicolons. (#3594)

This commit is contained in:
Nicholas Rodine 2022-08-17 02:05:15 -05:00 committed by GitHub
parent c8f9292bab
commit 2197f41506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -24,7 +24,7 @@ namespace Ryujinx.Common.SystemInfo
if (sysctlbyname("hw.memsize", ref totalRAM) != 0) // Bytes if (sysctlbyname("hw.memsize", ref totalRAM) != 0) // Bytes
{ {
totalRAM = 0; totalRAM = 0;
}; }
CpuName = $"{cpuName} ; {LogicalCoreCount} logical"; CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
RamTotal = totalRAM; RamTotal = totalRAM;

View file

@ -1187,7 +1187,7 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
if (cm.Mb.Corrupted) if (cm.Mb.Corrupted)
{ {
cm.Error.InternalError(CodecErr.CodecCorruptFrame, "Failed to decode tile data"); cm.Error.InternalError(CodecErr.CodecCorruptFrame, "Failed to decode tile data");
}; }
} }
} }
} }

View file

@ -120,7 +120,7 @@ namespace Ryujinx.Graphics.Shader
case TextureFormat.R16G16B16A16Sint: case TextureFormat.R16G16B16A16Sint:
case TextureFormat.R32G32B32A32Sint: case TextureFormat.R32G32B32A32Sint:
return VariableType.S32; return VariableType.S32;
}; }
return VariableType.F32; return VariableType.F32;
} }

View file

@ -131,7 +131,7 @@ namespace Ryujinx.Graphics.Vulkan
return ShaderKind.GlslFragmentShader; return ShaderKind.GlslFragmentShader;
case ShaderStage.Compute: case ShaderStage.Compute:
return ShaderKind.GlslComputeShader; return ShaderKind.GlslComputeShader;
}; }
Logger.Debug?.Print(LogClass.Gpu, $"Invalid {nameof(ShaderStage)} enum value: {stage}."); Logger.Debug?.Print(LogClass.Gpu, $"Invalid {nameof(ShaderStage)} enum value: {stage}.");

View file

@ -111,7 +111,7 @@ namespace Ryujinx.Graphics.Vulkan
_offset = buffer.Offset; _offset = buffer.Offset;
_size = buffer.Size; _size = buffer.Size;
ReleaseImpl();; ReleaseImpl();
} }
public BufferView GetBufferView(CommandBufferScoped cbs) public BufferView GetBufferView(CommandBufferScoped cbs)

View file

@ -766,7 +766,7 @@ namespace Ryujinx.HLE.FileSystem
metaEntries = meta.MetaEntries; metaEntries = meta.MetaEntries;
updateNcas.Remove(SystemUpdateTitleId); updateNcas.Remove(SystemUpdateTitleId);
}; }
} }
} }
@ -905,7 +905,7 @@ namespace Ryujinx.HLE.FileSystem
{ {
metaEntries = meta.MetaEntries; metaEntries = meta.MetaEntries;
} }
}; }
continue; continue;
} }