diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-07 20:25:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 20:25:52 +0200 |
commit | 97c6f984dc472fc9a8db7c21a20a643505723a67 (patch) | |
tree | 9142684564ef3d4a820aa0856a96cf5c1fcd0d63 /src/core/hle | |
parent | Merge pull request #959 from KAMiKAZOW/cubeb-compilation (diff) | |
parent | service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule() (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src/core/hle')
-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); } |