diff options
| author | Ac_K <Acoustik666@gmail.com> | 2019-10-16 02:30:36 +0200 |
|---|---|---|
| committer | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-10-16 11:30:36 +1100 |
| commit | c0fe6cdca0ebe6b19f8578893ec503d432683897 (patch) | |
| tree | c5dea471d29739159264a6df52599bd9fc465b7b /Ryujinx.HLE/HOS | |
| parent | 17d3c75df493434e7207c1a9fedc9d45d5a9100a (diff) | |
Move InvalidSystemResourceException with the other Exceptions (#794)
* Move InvalidSystemResourceException with the other
`InvalidSystemResourceException.cs` was in `Ryujinx.HLE/Resource` who didn't make sense since it's the only file in the folder, and other exceptions class are in `Ryujinx.HLE/Exceptions`.
* Fix empty lines
Diffstat (limited to 'Ryujinx.HLE/HOS')
| -rw-r--r-- | Ryujinx.HLE/HOS/Font/SharedFontManager.cs | 3 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Font/SharedFontManager.cs b/Ryujinx.HLE/HOS/Font/SharedFontManager.cs index 8a936dbf..11ba1ab4 100644 --- a/Ryujinx.HLE/HOS/Font/SharedFontManager.cs +++ b/Ryujinx.HLE/HOS/Font/SharedFontManager.cs @@ -1,11 +1,12 @@ using LibHac.Fs; using LibHac.Fs.NcaUtils; using Ryujinx.Common; +using Ryujinx.HLE.Exceptions; using Ryujinx.HLE.FileSystem; using Ryujinx.HLE.FileSystem.Content; -using Ryujinx.HLE.Resource; using System.Collections.Generic; using System.IO; + using static Ryujinx.HLE.Utilities.FontUtils; namespace Ryujinx.HLE.HOS.Font diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs index 8a2a55b9..e9ec654b 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs @@ -1,9 +1,9 @@ using LibHac.Fs; using LibHac.Fs.NcaUtils; using Ryujinx.Common.Logging; +using Ryujinx.HLE.Exceptions; using Ryujinx.HLE.FileSystem; using Ryujinx.HLE.HOS.Services.Time.Clock; -using Ryujinx.HLE.Resource; using Ryujinx.HLE.Utilities; using System.Collections.Generic; using System.IO; |
