| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | arm_dynarmic_32: Remove disabling of block linking on arm64 | 2023-06-27 | 1 | -5/+0 | |
| | | |||||
| * | core: hid: Allow to read bin files while switch controller is available | 2023-06-24 | 1 | -4/+10 | |
| | | |||||
| * | input_common: Dont try to read/write data from 3rd party controllers | 2023-06-24 | 1 | -0/+5 | |
| | | |||||
| * | Merge pull request #10859 from liamwhite/no-more-atomic-wait | 2023-06-23 | 4 | -18/+10 | |
| |\ | | | | | general: remove atomic signal and wait | ||||
| | * | general: remove atomic signal and wait | 2023-06-22 | 4 | -18/+10 | |
| | | | |||||
| * | | Merge pull request #10842 from german77/native_mifare | 2023-06-23 | 10 | -132/+209 | |
| |\ \ | | | | | | | input_common: Implement native mifare/skylander support for joycons/pro controller | ||||
| | * | | input_common: Implement native mifare support | 2023-06-21 | 10 | -132/+209 | |
| | | | | |||||
| * | | | vfs_real: lock concurrent accesses | 2023-06-23 | 2 | -25/+45 | |
| | | | | |||||
| * | | | Merge pull request #10457 from Kelebek1/optimise | 2023-06-22 | 37 | -275/+270 | |
| |\ \ \ | | | | | | | | | Remove memory allocations in some hot paths | ||||
| | * | | | Remove memory allocations in some hot paths | 2023-06-22 | 37 | -275/+270 | |
| | | |/ | |/| | |||||
| * | | | Merge pull request #10806 from liamwhite/worst-fs-implementation-ever | 2023-06-22 | 3 | -24/+42 | |
| |\ \ \ | |/ / |/| | | vfs_real: misc optimizations | ||||
| | * | | vfs_real: ensure size cache is reset on write | 2023-06-16 | 1 | -0/+2 | |
| | | | | |||||
| | * | | patch_manager: remove unnecessary GetSize calls | 2023-06-16 | 1 | -5/+4 | |
| | | | | |||||
| | * | | vfs_real: misc optimizations | 2023-06-16 | 2 | -19/+36 | |
| | | | | |||||
| * | | | Merge pull request #10086 from Morph1984/coretiming-ng-1 | 2023-06-21 | 15 | -131/+45 | |
| |\ \ \ | | | | | | | | | core_timing: Use CNTPCT as the guest CPU tick | ||||
| | * | | | nvdisp: Fix SingleCore frametime reporting | 2023-06-07 | 1 | -1/+1 | |
| | | | | | |||||
| | * | | | core_timing: Fix SingleCore cycle timer | 2023-06-07 | 3 | -27/+11 | |
| | | | | | |||||
| | * | | | (wall, native)_clock: Add GetGPUTick | 2023-06-07 | 2 | -0/+10 | |
| | | | | | | | | | | | | | | | | | Allows us to directly calculate the GPU tick without double conversion to and from the host clock tick. | ||||
| | * | | | time: Use compile time division for TimeSpanType conversion | 2023-06-07 | 5 | -11/+15 | |
| | | | | | |||||
| | * | | | core_timing: Use CNTPCT as the guest CPU tick | 2023-06-07 | 7 | -100/+15 | |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| | * | | | nvnflinger: Acquire lock prior to signaling the vsync variable | 2023-06-07 | 1 | -1/+2 | |
| | | | | | |||||
| * | | | | Merge pull request #10841 from liamwhite/math-is-hard | 2023-06-21 | 1 | -4/+10 | |
| |\ \ \ \ | | | | | | | | | | | vfs_concat: fix offset calculation when not aligned to file boundary | ||||
| | * | | | | vfs_concat: verify short read | 2023-06-19 | 1 | -0/+5 | |
| | | | | | | |||||
| | * | | | | vfs_concat: fix offset calculation when not aligned to file boundary | 2023-06-18 | 1 | -4/+5 | |
| | | | | | | |||||
| * | | | | | time_zone_manager: Add null terminator | 2023-06-20 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | We aren't null-terminating this string after the copy, and we need to. | ||||
| * | | | | | time_zone_manager: Stop on comma | 2023-06-20 | 1 | -1/+3 | |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a deviation from the reference time zone implementation. The actual code will set a pointer to the time zone name here, but for us we have a limited number of characters to work with, and the name of the time zone here could be larger than 8 characters. We can make the assumption that time zone names greater than five characters in length include a comma that denotes more data. Nintendo just truncates that data for the name, so we can do the same. time_zone_manager: Check for length of array Just to be double sure that we never break past the array length, directly compare against it. | ||||
| * | | | | Merge pull request #10797 from lat9nq/tzdb-patch | 2023-06-17 | 3 | -11/+6 | |
| |\ \ \ \ | | | | | | | | | | | time: Various time zone fixes | ||||
| | * | | | | time_zone_service: Always write time zone rule data | 2023-06-17 | 1 | -8/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Switch firmware will initialize this data even if the given parameters are invalid. We should do the same. | ||||
| | * | | | | time_zone_manager: Compare to the correct boolean | 2023-06-15 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| | * | | | | nx_tzdb: Correct Antarctica spelling | 2023-06-15 | 1 | -1/+1 | |
| | | |/ / | |/| | | |||||
| * | | | | k_thread: Use a mutex and cond_var to sync bool | 2023-06-17 | 2 | -5/+14 | |
| | |_|/ |/| | | | | | | | | | | | std::atomic<bool> is broken on MinGW and causes deadlocks there. Use a normal cond var in its stead. | ||||
| * | | | Merge pull request #10731 from german77/misc_fixes | 2023-06-16 | 10 | -115/+198 | |
| |\ \ \ | |/ / |/| | | service: nfc: Accuracy fixes | ||||
| | * | | service: nfc: Read tag protocol only for nfc backend | 2023-06-14 | 2 | -5/+6 | |
| | | | | |||||
| | * | | service: nfc: Accuracy fixes | 2023-06-14 | 10 | -110/+192 | |
| | | | | |||||
| * | | | Merge pull request #10729 from liamwhite/windows-is-a-meme | 2023-06-14 | 2 | -99/+118 | |
| |\ \ \ | |/ / |/| | | vfs_real: add file LRU cache for open file limits | ||||
| | * | | vfs_real: require file existence on open | 2023-06-13 | 1 | -0/+4 | |
| | | | | |||||
| | * | | vfs_real: add simplified open file cache | 2023-06-13 | 2 | -1/+18 | |
| | | | | |||||
| | * | | vfs_real: lazily open files | 2023-06-13 | 2 | -11/+3 | |
| | | | | |||||
| | * | | vfs_real: add file LRU cache for open file limits | 2023-06-13 | 2 | -100/+106 | |
| | | | | |||||
| * | | | Merge pull request #10603 from lat9nq/tz-more-complete | 2023-06-13 | 9 | -693/+297 | |
| |\ \ \ | | | | | | | | | core,common: Implement missing time zone data/computations | ||||
| | * | | | tz_manager: Fix comparison to wrong integer | 2023-06-05 | 1 | -1/+1 | |
| | | | | | |||||
| | * | | | tz_manager: Implement missing transition times | 2023-06-05 | 1 | -1/+59 | |
| | | | | | | | | | | | | | | | | | time_zone_manager: Use s64 storage | ||||
| | * | | | tz_manager: Warn on unimplemented code | 2023-06-05 | 1 | -0/+7 | |
| | | | | | |||||
| | * | | | tz_manager: Fix character offset not advancing | 2023-06-05 | 1 | -0/+1 | |
| | | | | | |||||
| | * | | | tz_manager: Fix off-by-one error | 2023-06-05 | 1 | -4/+4 | |
| | | | | | |||||
| | * | | | time_zone_binary: Add zoneinfo data | 2023-06-05 | 2 | -643/+65 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| | * | | | time: Implement missing services | 2023-06-05 | 7 | -11/+106 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue | ||||
| | * | | | time_zone_manager: Implement go_ahead/go_back | 2023-06-05 | 1 | -1/+39 | |
| | | | | | |||||
| | * | | | tz_content_manager: Try the system time zone first | 2023-06-05 | 1 | -2/+9 | |
| | | | | | | | | | | | | | | | | | | | | | If we can't find the normal time zone string, try searching for the closest one. | ||||
| | * | | | time: Remove auto timezone consideration | 2023-06-05 | 3 | -33/+3 | |
| | | | | | | | | | | | | | | | | | | | | | GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core. | ||||