summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_service.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* time_zone_service: Always write time zone rule datalat9nq2023-06-181-8/+2
| | | | | Switch firmware will initialize this data even if the given parameters are invalid. We should do the same.
* time: Implement missing servicesNarr the Reg2023-06-051-3/+54
| | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
* service: move hle_ipc from kernelLiam2023-03-011-7/+7
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-8/+7
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* style: Remove extra space preceding the :: operatorMorph2021-09-291-2/+2
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-12/+12
| | | | Transition to PascalCase for result names.
* general: Write buffers before pushing raw argumentsMorph2021-04-191-2/+4
| | | | For consistency with the rest of the service implementations
* ITimeZoneService: Update to 12.xgerman772021-04-091-0/+1
|
* service: Eliminate usages of the global system instanceLioncash2020-11-271-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.
* Revert "core: Fix clang build"bunnei2020-10-211-2/+2
|
* core: Fix clang buildLioncash2020-10-181-2/+2
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David2020-08-031-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
* service: time: Implement ToPosixTimeWithMyRule.bunnei2020-01-231-1/+23
| | | | - Used by Pokemon Mystery Dungeon.
* service: time: Rewrite implementation of glue services.bunnei2020-01-041-0/+148