summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_content_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #10839 from lat9nq/pgc-plusliamwhite2023-08-021-1/+2
|\ | | | | general: Reimplement per-game configurations
| * settings: Require time zone setting value for stirnglat9nq2023-07-211-1/+2
| |
* | tz_content_man: Generate the time zone binary oncelat9nq2023-07-301-8/+9
|/ | | | Fixes a memory leak with time zone binaries accumulating on theirselves.
* time: Implement missing servicesNarr the Reg2023-06-051-2/+2
| | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
* tz_content_manager: Try the system time zone firstlat9nq2023-06-051-2/+9
| | | | | If we can't find the normal time zone string, try searching for the closest one.
* time: Remove auto timezone considerationlat9nq2023-06-051-14/+3
| | | | | GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.
* tz_content_manager: Detect system time zonelat9nq2023-06-051-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.
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-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.
* service: time: Use GetFileRelative to get files within subdirectoriesMorph2021-06-181-1/+1
| | | | The timezone info file can be within subdirectories (such as Asia/Tokyo), use GetFileRelative instead of GetFile to get files within subdirectories.
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-3/+3
| | | | Transition to PascalCase for result names.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-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.
* common: Move settings to common from core.bunnei2021-04-151-1/+1
| | | | - Removes a dependency on core and input_common from common.
* service: time: Update current time with changes to RTC setting.bunnei2020-10-131-2/+3
| | | | - This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
* time_zone_content_manager: Collapse auto and default caseLioncash2020-08-141-3/+1
| | | | Prevents a useless self-assignment from occurring.
* hle: service: time_zone_manager: Use current time zone setting.bunnei2020-05-111-2/+22
|
* time_zone_content_manager: Fix out of bounds readReinUsesLisp2020-03-181-1/+1
| | | | | | | There were cases where raw_data didn't contain enough space to hold the zero terminator. This was caught with -fsanitize=address.
* service: time: Rewrite implementation of glue services.bunnei2020-01-041-0/+125