From 2989c163a891c4ac730e799e1457b1bfb2ecc028 Mon Sep 17 00:00:00 2001 From: TSRBerry <20988865+TSRBerry@users.noreply.github.com> Date: Mon, 4 Dec 2023 14:17:13 +0100 Subject: editorconfig: Set default encoding to UTF-8 (#5793) * editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8 --- src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Ryujinx.HLE/HOS/Services/Apm') diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs index 9a3a0462..16bc4407 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { [Service("apm")] [Service("apm:am")] // 8.0.0+ diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs b/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs index 0fb6c28a..86a1491d 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { class PerformanceState { diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs index 260992be..d238e422 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs @@ -1,4 +1,4 @@ -using Ryujinx.Common.Logging; +using Ryujinx.Common.Logging; namespace Ryujinx.HLE.HOS.Services.Apm { diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs index 3fe5b383..e8b7d12a 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { [Service("apm:sys")] class SystemManagerServer : ISystemManager diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs index c84d32ba..26350157 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { enum CpuBoostMode { diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs index 6dd193f9..650e4f4c 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { enum PerformanceConfiguration : uint // Clocks are all in MHz. { // CPU | GPU | RAM | NOTE diff --git a/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs index 0a771965..74f54c44 100644 --- a/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs +++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Apm +namespace Ryujinx.HLE.HOS.Services.Apm { enum PerformanceMode : uint { -- cgit v1.2.3