diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-07 03:18:03 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-07 03:18:07 -0400 |
commit | 20c976ff2a6c4fb59d3bde1efe149251a523e31a (patch) | |
tree | 36d4a0d08e8f58b618db77050e5ad30fa1b831db /src | |
parent | 826b1394e85720b62938c5f7af4a876e203316af (diff) |
service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()
Updates the ID of these based off the information on Switch Brew.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/time/time.cpp | 4 |
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: {5, nullptr, "GetTimeZoneRuleVersion"}, {100, &ITimeZoneService::ToCalendarTime, "ToCalendarTime"}, {101, &ITimeZoneService::ToCalendarTimeWithMyRule, "ToCalendarTimeWithMyRule"}, - {200, nullptr, "ToPosixTime"}, - {201, nullptr, "ToPosixTimeWithMyRule"}, + {201, nullptr, "ToPosixTime"}, + {202, nullptr, "ToPosixTimeWithMyRule"}, }; RegisterHandlers(functions); } |