summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_zone_content_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
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