Removed extra semicolons. (#3594)
This commit is contained in:
parent
c8f9292bab
commit
2197f41506
6 changed files with 7 additions and 7 deletions
|
@ -24,7 +24,7 @@ namespace Ryujinx.Common.SystemInfo
|
|||
if (sysctlbyname("hw.memsize", ref totalRAM) != 0) // Bytes
|
||||
{
|
||||
totalRAM = 0;
|
||||
};
|
||||
}
|
||||
|
||||
CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
|
||||
RamTotal = totalRAM;
|
||||
|
|
|
@ -1187,7 +1187,7 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
|
|||
if (cm.Mb.Corrupted)
|
||||
{
|
||||
cm.Error.InternalError(CodecErr.CodecCorruptFrame, "Failed to decode tile data");
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,7 +120,7 @@ namespace Ryujinx.Graphics.Shader
|
|||
case TextureFormat.R16G16B16A16Sint:
|
||||
case TextureFormat.R32G32B32A32Sint:
|
||||
return VariableType.S32;
|
||||
};
|
||||
}
|
||||
|
||||
return VariableType.F32;
|
||||
}
|
||||
|
|
|
@ -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}.");
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
_offset = buffer.Offset;
|
||||
_size = buffer.Size;
|
||||
|
||||
ReleaseImpl();;
|
||||
ReleaseImpl();
|
||||
}
|
||||
|
||||
public BufferView GetBufferView(CommandBufferScoped cbs)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue