mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
Removed extra semicolons. (#3594)
This commit is contained in:
parent
c8f9292bab
commit
2197f41506
|
@ -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;
|
||||||
|
|
|
@ -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");
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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}.");
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue