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/Sdb/Avm/IAvmService.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs | 2 +- .../HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs | 2 +- .../Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs | 2 +- .../HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Ryujinx.HLE/HOS/Services/Sdb') diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs index ec312108..9c6ed5c3 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Am.Tcap +namespace Ryujinx.HLE.HOS.Services.Am.Tcap { [Service("avm")] // 6.0.0+ class IAvmService : IpcService diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs index c2e04290..208847cc 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm +namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm { [Service("pdm:ntfy")] class INotifyService : IpcService diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs index c46050b8..6508794a 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs @@ -1,4 +1,4 @@ -using Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService; +using Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService; namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm { diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs index 7017cc50..56d389cd 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs @@ -1,4 +1,4 @@ -using Ryujinx.Common; +using Ryujinx.Common; using Ryujinx.Cpu; using Ryujinx.HLE.HOS.Services.Account.Acc; using Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService.Types; diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs index b58fd219..8bfb75c7 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService.Types { diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs index c1e77ed3..a4fd3ca9 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService.Types +namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService.Types { enum PlayLogQueryCapability { diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs index dd20220f..85167227 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm +namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm { enum ResultCode { -- cgit v1.2.3