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
{
totalRAM = 0;
};
}
CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
RamTotal = totalRAM;

View File

@ -1187,7 +1187,7 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
if (cm.Mb.Corrupted)
{
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.R32G32B32A32Sint:
return VariableType.S32;
};
}
return VariableType.F32;
}

View File

@ -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}.");

View File

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

View File

@ -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;
}