diff --git a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs b/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs index dd8ac4359b..ed31fe7c53 100644 --- a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs +++ b/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs @@ -13,10 +13,10 @@ namespace Ryujinx.HLE.HOS.Services.Time.StaticService { class ITimeZoneServiceForPsc : IpcService { - private TimeZoneManagerForPsc _timeZoneManager; - private bool _writePermission; + private TimeZoneManager _timeZoneManager; + private bool _writePermission; - public ITimeZoneServiceForPsc(TimeZoneManagerForPsc timeZoneManager, bool writePermission) + public ITimeZoneServiceForPsc(TimeZoneManager timeZoneManager, bool writePermission) { _timeZoneManager = timeZoneManager; _writePermission = writePermission; diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs index e5e3e535ab..f0cf977d01 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs @@ -19,11 +19,11 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone private Switch _device; private string[] _locationNameCache; - public TimeZoneManagerForPsc Manager { get; private set; } + public TimeZoneManager Manager { get; private set; } public TimeZoneContentManager() { - Manager = new TimeZoneManagerForPsc(); + Manager = new TimeZoneManager(); } internal void Initialize(TimeManager timeManager, Switch device) diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManagerForPsc.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs similarity index 99% rename from Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManagerForPsc.cs rename to Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs index 23d80adee7..27a650c575 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManagerForPsc.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs @@ -6,7 +6,7 @@ using static Ryujinx.HLE.HOS.Services.Time.TimeZone.TimeZoneRule; namespace Ryujinx.HLE.HOS.Services.Time.TimeZone { - class TimeZoneManagerForPsc + class TimeZoneManager { private bool _isInitialized; private TimeZoneRule _myRules; @@ -16,7 +16,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone private SteadyClockTimePoint _timeZoneUpdateTimePoint; private object _lock; - public TimeZoneManagerForPsc() + public TimeZoneManager() { _isInitialized = false; _deviceLocationName = null;