editorconfig: Set default encoding to UTF-8 (#5793)

* editorconfig: Add default charset

* Change file encoding from UTF-8-BOM to UTF-8
This commit is contained in:
TSRBerry
2023-12-04 14:17:13 +01:00
committed by GitHub
parent 1be668e68a
commit 2989c163a8
1962 changed files with 1964 additions and 1961 deletions

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time.Clock
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{
class EphemeralNetworkSystemClockContextWriter : SystemClockContextUpdateCallback
{

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time.Clock
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{
class EphemeralNetworkSystemClockCore : SystemClockCore
{

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time.Clock
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{
class LocalSystemClockContextWriter : SystemClockContextUpdateCallback
{

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time.Clock
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{
class NetworkSystemClockContextWriter : SystemClockContextUpdateCallback
{

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time.Clock
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{
class StandardLocalSystemClockCore : SystemClockCore
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
using Ryujinx.HLE.HOS.Kernel.Threading;
using System;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Utilities;
using Ryujinx.Common.Utilities;
using Ryujinx.Cpu;
using System;

View File

@@ -1,4 +1,4 @@
using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Kernel.Threading;
using System.Collections.Generic;
using System.Threading;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
using Ryujinx.HLE.HOS.Kernel.Threading;
namespace Ryujinx.HLE.HOS.Services.Time.Clock

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
using System;
using System.Runtime.InteropServices;

View File

@@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.Clock.Types
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Utilities;
using Ryujinx.Common.Utilities;
using System;
using System.Runtime.InteropServices;

View File

@@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.Clock
{

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.Clock

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time
namespace Ryujinx.HLE.HOS.Services.Time
{
[Service("time:al")] // 9.0.0+
class IAlarmService : IpcService

View File

@@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Time
namespace Ryujinx.HLE.HOS.Services.Time
{
[Service("time:p")] // 9.0.0+
class IPowerStateRequestHandler : IpcService

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common;
using Ryujinx.Common;
using Ryujinx.HLE.HOS.Services.Pcv.Bpc;
using Ryujinx.HLE.HOS.Services.Settings;
using Ryujinx.HLE.HOS.Services.Time.Clock;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common;
using Ryujinx.Common;
using Ryujinx.Cpu;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.HOS.Ipc;

View File

@@ -1,4 +1,4 @@
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.CodeAnalysis;
namespace Ryujinx.HLE.HOS.Services.Time
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common;
using Ryujinx.Common;
using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Time.Clock;
using Ryujinx.HLE.HOS.Services.Time.TimeZone;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.HOS.Kernel.Memory;
using Ryujinx.HLE.HOS.Services.Time.Clock;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Cpu;
using Ryujinx.Cpu;
using Ryujinx.HLE.HOS.Kernel.Memory;
using Ryujinx.HLE.HOS.Services.Time.Clock;
using Ryujinx.HLE.HOS.Services.Time.Clock.Types;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common;
using Ryujinx.Common;
using Ryujinx.Common.Memory;
using Ryujinx.Common.Utilities;
using Ryujinx.HLE.Utilities;

View File

@@ -1,4 +1,4 @@
using LibHac;
using LibHac;
using LibHac.Common;
using LibHac.Fs;
using LibHac.Fs.Fsa;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Memory;
using Ryujinx.Common.Memory;
using Ryujinx.HLE.HOS.Services.Time.Clock;
using System;
using System.IO;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Memory;
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.TimeZone

View File

@@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.TimeZone
{

View File

@@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.TimeZone
{

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Memory;
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.TimeZone

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Utilities;
using Ryujinx.Common.Utilities;
using System;
using System.Runtime.InteropServices;

View File

@@ -1,4 +1,4 @@
using Ryujinx.Common.Memory;
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.TimeZone

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Time.Types

View File

@@ -1,4 +1,4 @@
using System;
using System;
namespace Ryujinx.HLE.HOS.Services.Time
{