summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: time: Setup the network clock with the local clock contextMorph2021-04-081-1/+1
| | | | Setting the network time allows some time based events using the network clock to not reset.
* Revert "core: Fix clang build"bunnei2020-10-211-64/+54
|
* core: Fix clang buildLioncash2020-10-181-54/+64
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-8/+13
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* time_zone_manager: Resolve sign conversion warningsLioncash2020-04-171-2/+2
| | | | | ttis and ats will never exceed the length of INT32_MAX in our case, so this is safe.
* CMakeLists: Specify -Wextra on linux buildsLioncash2020-04-161-7/+7
| | | | | | | | | | | Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well.
* service: time: Implement ToPosixTimeWithMyRule.bunnei2020-01-231-0/+9
| | | | - Used by Pokemon Mystery Dungeon.
* time: Fix month off-by-one error.bunnei2020-01-201-2/+2
| | | | - Fixes timestamp in ZLA and Astral Chain saves.
* time: Remove overflow error checking (currently breaks ADO builds).bunnei2020-01-041-9/+1
|
* service: time: Rewrite implementation of glue services.bunnei2020-01-041-0/+1038