summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-07 20:25:52 +0200
committerGitHub <noreply@github.com>2018-08-07 20:25:52 +0200
commit97c6f984dc472fc9a8db7c21a20a643505723a67 (patch)
tree9142684564ef3d4a820aa0856a96cf5c1fcd0d63
parentMerge pull request #959 from KAMiKAZOW/cubeb-compilation (diff)
parentservice/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule() (diff)
downloadyuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.gz
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.bz2
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.lz
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.xz
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.tar.zst
yuzu-97c6f984dc472fc9a8db7c21a20a643505723a67.zip
-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);
}