aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-07-14 21:04:38 +0200
committergdkchan <gab.dark.100@gmail.com>2019-07-14 16:04:38 -0300
commit4ad3936afd4ca393a05b330e3848958e9598e910 (patch)
treee0b3bc963230d3ea3d6cc57b5bc6caeba9233479 /Ryujinx.HLE/HOS/Services/Time/TimeError.cs
parent4926f6523d3130879e108403979ab68f1212f544 (diff)
Refactoring result codes (#731)
* refactoring result codes - Add a main enum who can handle some orphalin result codes and the default `ResultCode.Success` one. - Add sub-enum by services when it's needed. - Remove some empty line. - Recast all service calls to ResultCode. - Remove some unneeded static declaration. - Delete unused `NvHelper` class. * NvResult is back * Fix
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Time/TimeError.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Time/TimeError.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeError.cs b/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
deleted file mode 100644
index 20b2375c..00000000
--- a/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Time
-{
- static class TimeError
- {
- public const int TimeNotFound = 200;
- public const int Overflow = 201;
- public const int LocationNameTooLong = 801;
- public const int OutOfRange = 902;
- public const int TimeZoneConversionFailed = 903;
- public const int TimeZoneNotFound = 989;
- }
-}