summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-07 14:25:52 -0400
committerGravatar GitHub2018-08-07 14:25:52 -0400
commit97c6f984dc472fc9a8db7c21a20a643505723a67 (patch)
tree9142684564ef3d4a820aa0856a96cf5c1fcd0d63 /src
parentMerge pull request #959 from KAMiKAZOW/cubeb-compilation (diff)
parentservice/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule() (diff)
downloadyuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.gz
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.xz
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.zip
Merge pull request #953 from lioncash/time
service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/time/time.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp
index 37b58bb77..2172c681b 100644
--- a/src/core/hle/service/time/time.cpp
+++ b/src/core/hle/service/time/time.cpp
@@ -80,8 +80,8 @@ public:
80 {5, nullptr, "GetTimeZoneRuleVersion"}, 80 {5, nullptr, "GetTimeZoneRuleVersion"},
81 {100, &ITimeZoneService::ToCalendarTime, "ToCalendarTime"}, 81 {100, &ITimeZoneService::ToCalendarTime, "ToCalendarTime"},
82 {101, &ITimeZoneService::ToCalendarTimeWithMyRule, "ToCalendarTimeWithMyRule"}, 82 {101, &ITimeZoneService::ToCalendarTimeWithMyRule, "ToCalendarTimeWithMyRule"},
83 {200, nullptr, "ToPosixTime"}, 83 {201, nullptr, "ToPosixTime"},
84 {201, nullptr, "ToPosixTimeWithMyRule"}, 84 {202, nullptr, "ToPosixTimeWithMyRule"},
85 }; 85 };
86 RegisterHandlers(functions); 86 RegisterHandlers(functions);
87 } 87 }