summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* time: Implement missing servicesNarr the Reg2023-06-051-5/+6
| | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
* time: Remove auto timezone considerationlat9nq2023-06-051-17/+0
| | | | | GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.
* time_manager: Don't offset RTC by system time zonelat9nq2023-06-051-5/+1
| | | | | | | This causes the emulated system's universal time to be on the user's clock, and the user time to be off if they set a time zone. time_manager: Remove GetExternalRtcTime
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-5/+5
|
* 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.
* general: Rename NewUUID to UUID, and remove the previous UUID implMorph2022-02-051-2/+2
| | | | This completes the removal of the old UUID implementation.
* service: Migrate to the new UUID implementationMorph2022-02-051-2/+2
|
* core: Fix transitive include build errorsameerj2021-11-041-0/+2
|
* settings: Remove std::chrono usageameerj2021-10-171-6/+7
| | | | Alleviates the dependency on chrono for all files that include settings.h
* 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