diff options
author | Thomas Guillemard <me@thog.eu> | 2019-07-04 17:20:40 +0200 |
---|---|---|
committer | Ac_K <Acoustik666@gmail.com> | 2019-07-04 17:20:40 +0200 |
commit | 708620252e837f2111213c6e36d5f8cc8cfd03e8 (patch) | |
tree | bf05e304312382f059b418f003b251d7bb28e3fb /Ryujinx.HLE/FileSystem/Content/ContentManager.cs | |
parent | 789cdba8b51f310399752f7a1309e489fadf8dc1 (diff) |
ITimeZoneService rewrite (#722)
* Clean up ITimeZoneService
Add error codes and simplify parsing
* Add accurate timezone logic
TOOD: LoadTimeZoneRule and location name cmds.
* Integrate the new TimeZone logic
* SCREAMING_UNIX_CASE => PascalCase
* Address comments
* Reduce use of pointer in the LoadTimeZoneRule logic
* Address comments
* Realign tzIfStream logic in LoadTimeZoneRule
* Address gdk's comments
Diffstat (limited to 'Ryujinx.HLE/FileSystem/Content/ContentManager.cs')
-rw-r--r-- | Ryujinx.HLE/FileSystem/Content/ContentManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs index 3812e580..fe6642c3 100644 --- a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs +++ b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs @@ -1,5 +1,6 @@ using LibHac.Fs; using LibHac.Fs.NcaUtils; +using Ryujinx.HLE.HOS.Services.Time.TimeZone; using Ryujinx.HLE.Utilities; using System; using System.Collections.Generic; @@ -141,6 +142,8 @@ namespace Ryujinx.HLE.FileSystem.Content _locationEntries.Add(storageId, locationList); } } + + TimeZoneManager.Instance.Initialize(_device); } public void ClearEntry(long titleId, ContentType contentType, StorageId storageId) |