summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_service.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-24Rework time service to fix time passing offline.Kelebek11-217/+0
2023-06-18time_zone_service: Always write time zone rule datalat9nq1-8/+2
Switch firmware will initialize this data even if the given parameters are invalid. We should do the same.
2023-06-05time: Implement missing servicesNarr the Reg1-3/+54
Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
2023-03-01service: move hle_ipc from kernelLiam1-7/+7
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-2/+2
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-2/+2
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-8/+7
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-09-29style: Remove extra space preceding the :: operatorMorph1-2/+2
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-12/+12
Transition to PascalCase for result names.
2021-04-19general: Write buffers before pushing raw argumentsMorph1-2/+4
For consistency with the rest of the service implementations
2021-04-09ITimeZoneService: Update to 12.xgerman771-0/+1
2020-11-27service: Eliminate usages of the global system instanceLioncash1-2/+3
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-10-21Revert "core: Fix clang build"bunnei1-2/+2
2020-10-18core: Fix clang buildLioncash1-2/+2
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-08-03ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David1-2/+2
* ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf
2020-01-23service: time: Implement ToPosixTimeWithMyRule.bunnei1-1/+23
- Used by Pokemon Mystery Dungeon.
2020-01-04service: time: Rewrite implementation of glue services.bunnei1-0/+148