summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-06-05time: Remove auto timezone considerationlat9nq1-17/+0
GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.
2023-06-05time_manager: Don't offset RTC by system time zonelat9nq1-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
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-5/+5
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.
2022-02-05general: Rename NewUUID to UUID, and remove the previous UUID implMorph1-2/+2
This completes the removal of the old UUID implementation.
2022-02-05service: Migrate to the new UUID implementationMorph1-2/+2
2021-11-04core: Fix transitive include build errorsameerj1-0/+2
2021-10-17settings: Remove std::chrono usageameerj1-6/+7
Alleviates the dependency on chrono for all files that include settings.h
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-4/+4
Transition to PascalCase for result names.
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-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.
2021-04-26service: Eliminate cases of member shadowingLioncash1-11/+11
Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
2021-04-15common: Move settings to common from core.bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2021-04-08service: time: Setup the network clock with the local clock contextMorph1-1/+5
Setting the network time allows some time based events using the network clock to not reset.
2021-02-21kernel: Fix resource release exception on exitameerj1-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.
2020-10-13service: time: Update current time with changes to RTC setting.bunnei1-101/+258
- This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
2020-05-13time_zone: Use std::chrono::seconds for strong typing.bunnei1-1/+1
2020-05-11hle: service: time_zone_manager: Use current time zone setting.bunnei1-1/+10
2020-01-04service: time: Rewrite implementation of glue services.bunnei1-0/+137