summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-07 03:18:03 -0400
committerGravatar Lioncash2018-08-07 03:18:07 -0400
commit20c976ff2a6c4fb59d3bde1efe149251a523e31a (patch)
tree36d4a0d08e8f58b618db77050e5ad30fa1b831db
parentMerge pull request #931 from DarkLordZach/nca-as-drd (diff)
downloadyuzu-20c976ff2a6c4fb59d3bde1efe149251a523e31a.tar.gz
yuzu-20c976ff2a6c4fb59d3bde1efe149251a523e31a.tar.xz
yuzu-20c976ff2a6c4fb59d3bde1efe149251a523e31a.zip
service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()
Updates the ID of these based off the information on Switch Brew.
-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 }