mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-07 10:48:28 +02:00
[Ryujinx.Graphics.Vic] Address dotnet-format issues (#5374)
* dotnet format style --severity info Some changes were manually reverted. * Restore a few unused methods and variables * Address review comments * Address most dotnet format whitespace warnings * Add comments to disabled warnings * Address IDE0251 warnings * dotnet format whitespace after rebase * Remove SuppressMessage attribute for removed rule
This commit is contained in:
@@ -34,7 +34,7 @@ namespace Ryujinx.Graphics.Vic.Image
|
||||
{
|
||||
int index = RentMinimum(length, out T[] bufferArray);
|
||||
|
||||
buffer = new Span<T>(bufferArray).Slice(0, length);
|
||||
buffer = new Span<T>(bufferArray)[..length];
|
||||
|
||||
return index;
|
||||
}
|
||||
|
Reference in New Issue
Block a user