diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2022-12-10 15:21:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 21:21:13 +0100 |
commit | 851d81d24ab437bbe552a085cdd3caad6f4a1867 (patch) | |
tree | f86c541e454757fafdd67a6fcca9ec5234ecfdff /Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs | |
parent | 459c4caebac0bc16c04467d9dcd2ef7a9fc0bd92 (diff) |
Fix Redundant Qualifer Warnings (#4091)1.1.459
* Fix Redundant Qualifer Warnings
* Remove unnecessary using
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs index 4c988694..f4b3a959 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs @@ -130,7 +130,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone } List<(int Offset, string Location, string Abbr)> outList = new List<(int Offset, string Location, string Abbr)>(); - var now = System.DateTimeOffset.Now.ToUnixTimeSeconds(); + var now = DateTimeOffset.Now.ToUnixTimeSeconds(); using (IStorage ncaStorage = new LocalStorage(_virtualFileSystem.SwitchPathToSystemPath(tzBinaryContentPath), FileAccess.Read, FileMode.Open)) using (IFileSystem romfs = new Nca(_virtualFileSystem.KeySet, ncaStorage).OpenFileSystem(NcaSectionType.Data, _fsIntegrityCheckLevel)) { |