diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-06-27 16:35:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 16:35:48 +0200 |
commit | 0191e2396a3a6e499f49aa3b7c9937ccd489856c (patch) | |
tree | 9c04cd9b070a067ce4418246f48e6aa74e01bb5d /src/Ryujinx.Graphics.Host1x/Devices.cs | |
parent | e96299eef5a9e951d9161b5a13bde9feecc2178c (diff) |
[Ryujinx.Graphics.Host1x] Address dotnet-format issues (#5368)1.1.925
* dotnet format style --severity info
Some changes were manually reverted.
* Address most dotnet format whitespace warnings
* Add comments to disabled warnings
* dotnet format whitespace after rebase
Diffstat (limited to 'src/Ryujinx.Graphics.Host1x/Devices.cs')
-rw-r--r-- | src/Ryujinx.Graphics.Host1x/Devices.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.Host1x/Devices.cs b/src/Ryujinx.Graphics.Host1x/Devices.cs index 5b3bed6b..95c67c9c 100644 --- a/src/Ryujinx.Graphics.Host1x/Devices.cs +++ b/src/Ryujinx.Graphics.Host1x/Devices.cs @@ -6,7 +6,7 @@ namespace Ryujinx.Graphics.Host1x { class Devices : IDisposable { - private readonly Dictionary<ClassId, IDeviceState> _devices = new Dictionary<ClassId, IDeviceState>(); + private readonly Dictionary<ClassId, IDeviceState> _devices = new(); public void RegisterDevice(ClassId classId, IDeviceState device) { |