aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Time/TimeError.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Time/TimeError.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeError.cs b/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
new file mode 100644
index 00000000..20b2375c
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Time/TimeError.cs
@@ -0,0 +1,12 @@
+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;
+ }
+}