summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2023-06-17Merge pull request #10797 from lat9nq/tzdb-patchbunnei
time: Various time zone fixes
2023-06-17time_zone_service: Always write time zone rule datalat9nq
Switch firmware will initialize this data even if the given parameters are invalid. We should do the same.
2023-06-17k_thread: Use a mutex and cond_var to sync boollat9nq
std::atomic<bool> is broken on MinGW and causes deadlocks there. Use a normal cond var in its stead.
2023-06-16Merge pull request #10731 from german77/misc_fixesliamwhite
service: nfc: Accuracy fixes
2023-06-16vfs_real: ensure size cache is reset on writeLiam
2023-06-16patch_manager: remove unnecessary GetSize callsLiam
2023-06-16vfs_real: misc optimizationsLiam
2023-06-15time_zone_manager: Compare to the correct booleanlat9nq
Reference implementation does not compare the booleans as we had them. Use the correct ones as in the reference. Also adds an assert. I have been made aware of a crash here and am not able to reproduce currently.
2023-06-15nx_tzdb: Correct Antarctica spellinglat9nq
2023-06-14Merge pull request #10729 from liamwhite/windows-is-a-memebunnei
vfs_real: add file LRU cache for open file limits
2023-06-14service: nfc: Read tag protocol only for nfc backendNarr the Reg
2023-06-14service: nfc: Accuracy fixesNarr the Reg
2023-06-13vfs_real: require file existence on openLiam
2023-06-13vfs_real: add simplified open file cacheLiam
2023-06-13Merge pull request #10603 from lat9nq/tz-more-completebunnei
core,common: Implement missing time zone data/computations
2023-06-13vfs_real: lazily open filesLiam
2023-06-13vfs_real: add file LRU cache for open file limitsLiam
2023-06-12core: decouple ARM interface from DynarmicLiam
2023-06-11android: Add update supportNarr the Reg
2023-06-09android: Add proper homebrew checkCharles Lombardo
2023-06-08Merge pull request #10623 from german77/backupliamwhite
service: nfc: Add backup support
2023-06-08nvnflinger: allow locking framerate during video playbackLiam
2023-06-07nvdisp: Fix SingleCore frametime reportingMorph
2023-06-07core_timing: Fix SingleCore cycle timerMorph
2023-06-07(wall, native)_clock: Add GetGPUTickMorph
Allows us to directly calculate the GPU tick without double conversion to and from the host clock tick.
2023-06-07time: Use compile time division for TimeSpanType conversionMorph
2023-06-07core_timing: Use CNTPCT as the guest CPU tickMorph
Previously, we were mixing the raw CPU frequency and CNTFRQ. The raw CPU frequency (1020 MHz) should've never been used as CNTPCT (whose frequency is CNTFRQ) is the only counter available.
2023-06-07nvnflinger: Acquire lock prior to signaling the vsync variableMorph
2023-06-07Merge pull request #10591 from keve1227/localized-game-iconsliamwhite
Localize game icons
2023-06-06service: nfc: Add backup supportgerman77
2023-06-05Merge pull request #10508 from yuzu-emu/limebunnei
Project Lime - yuzu Android Port
2023-06-05tz_manager: Fix comparison to wrong integerlat9nq
2023-06-05tz_manager: Implement missing transition timeslat9nq
time_zone_manager: Use s64 storage
2023-06-05tz_manager: Warn on unimplemented codelat9nq
2023-06-05tz_manager: Fix character offset not advancinglat9nq
2023-06-05tz_manager: Fix off-by-one errorlat9nq
2023-06-05time_zone_binary: Add zoneinfo datalat9nq
Adds the basic time zone data for the system archive. time_zone_binary: Implement full system archive time_zone_binary: Remove unneeded template tz_binary: Make GenerateFiles static
2023-06-05time: Implement missing servicesNarr the Reg
Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
2023-06-05time_zone_manager: Implement go_ahead/go_backlat9nq
2023-06-05tz_content_manager: Try the system time zone firstlat9nq
If we can't find the normal time zone string, try searching for the closest one.
2023-06-05time: Remove auto timezone considerationlat9nq
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 zonelat9nq
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
2023-06-05tz_content_manager: Detect system time zonelat9nq
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.
2023-06-04Merge pull request #10594 from liamwhite/double-patchbunnei
fsp-srv: avoid patching romfs multiple times
2023-06-03Fix typoKevin Sundqvist Norlén
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
2023-06-03fsp-srv: avoid patching romfs multiple timesLiam
2023-06-03Update Chinese NX language namesKeve1227
... as per the TLoZ: TotK icon files. Would this conflict with older games?
2023-06-03Pick game icon based on the configured system languageKeve1227
2023-06-03romfs: use vfs_cached for romfs outputLiam
2023-06-03vfs: add vfs_cached for romfs buildLiam