summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-4/+4
| | | | Transition to PascalCase for result names.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-1/+1
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* service: Eliminate cases of member shadowingLioncash2021-04-261-11/+11
| | | | | Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
* common: Move settings to common from core.bunnei2021-04-151-1/+1
| | | | - Removes a dependency on core and input_common from common.
* service: time: Setup the network clock with the local clock contextMorph2021-04-081-1/+5
| | | | Setting the network time allows some time based events using the network clock to not reset.
* kernel: Fix resource release exception on exitameerj2021-02-211-0/+4
| | | | | After rewriting the resource limit, objects releasing reserved resources require a live kernel instance. This commit fixes exceptions that occur due to the kernel being destroyed before some objects released their resources, allowing for a graceful exit.
* service: time: Update current time with changes to RTC setting.bunnei2020-10-131-101/+258
| | | | - This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
* time_zone: Use std::chrono::seconds for strong typing.bunnei2020-05-131-1/+1
|
* hle: service: time_zone_manager: Use current time zone setting.bunnei2020-05-111-1/+10
|
* service: time: Rewrite implementation of glue services.bunnei2020-01-041-0/+137