summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-07 14:25:52 -0400
committerGitHub <noreply@github.com>2018-08-07 14:25:52 -0400
commit97c6f984dc472fc9a8db7c21a20a643505723a67 (patch)
tree9142684564ef3d4a820aa0856a96cf5c1fcd0d63 /src
parent07595987acb4280d1c021e10a5ee075869b65e7a (diff)
parent20c976ff2a6c4fb59d3bde1efe149251a523e31a (diff)
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:
{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);
}