summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_content_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-24Rework time service to fix time passing offline.Kelebek11-151/+0
2023-07-30tz_content_man: Generate the time zone binary oncelat9nq1-8/+9
Fixes a memory leak with time zone binaries accumulating on theirselves.
2023-07-21settings: Require time zone setting value for stirnglat9nq1-1/+2
2023-06-05time: Implement missing servicesNarr the Reg1-2/+2
Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
2023-06-05tz_content_manager: Try the system time zone firstlat9nq1-2/+9
If we can't find the normal time zone string, try searching for the closest one.
2023-06-05time: Remove auto timezone considerationlat9nq1-14/+3
GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.
2023-06-05tz_content_manager: Detect system time zonelat9nq1-1/+11
Uses C++20 tzdb to determine the system timezone. The switch uses the 597 posix time zones, so this needs tests if the system time zone isn't posix-compliant.
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-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.
2021-06-18service: time: Use GetFileRelative to get files within subdirectoriesMorph1-1/+1
The timezone info file can be within subdirectories (such as Asia/Tokyo), use GetFileRelative instead of GetFile to get files within subdirectories.
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-3/+3
Transition to PascalCase for result names.
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-2/+2
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-15common: Move settings to common from core.bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2020-10-13service: time: Update current time with changes to RTC setting.bunnei1-2/+3
- This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
2020-08-14time_zone_content_manager: Collapse auto and default caseLioncash1-3/+1
Prevents a useless self-assignment from occurring.
2020-05-11hle: service: time_zone_manager: Use current time zone setting.bunnei1-2/+22
2020-03-18time_zone_content_manager: Fix out of bounds readReinUsesLisp1-1/+1
There were cases where raw_data didn't contain enough space to hold the zero terminator. This was caught with -fsanitize=address.
2020-01-04service: time: Rewrite implementation of glue services.bunnei1-0/+125