| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Merge pull request #9912 from liamwhite/err | 2023-03-08 | 22 | -119/+105 | ||
| |\ \ | | | | | | | hle: rename legacy errors to Results | |||||
| | * | | hle: rename legacy errors to Results | 2023-03-06 | 22 | -119/+105 | ||
| | | | | ||||||
| * | | | Merge pull request #9904 from liamwhite/ws | 2023-03-08 | 1 | -16/+29 | ||
| |\ \ \ | | | | | | | | | kernel: fix WaitSynchronization | |||||
| | * | | | kernel: fix WaitSynchronization | 2023-03-05 | 1 | -16/+29 | ||
| | | | | | ||||||
| * | | | | Merge pull request #9921 from liamwhite/override | 2023-03-07 | 3 | -5/+5 | ||
| |\ \ \ \ | | | | | | | | | | | general: fix type inconsistencies | |||||
| | * | | | | general: fix type inconsistencies | 2023-03-07 | 3 | -5/+5 | ||
| | | |_|/ | |/| | | ||||||
| * / | | | kernel: avoid signed overflow UB on MSVC | 2023-03-07 | 1 | -1/+2 | ||
| |/ / / | ||||||
| * | | | Merge pull request #9889 from Morph1984/time-is-ticking | 2023-03-07 | 3 | -28/+41 | ||
| |\ \ \ | |_|/ |/| | | core_timing: Reduce CPU usage on Windows | |||||
| | * | | hardware_properties: Update BASE_CLOCK_RATE to exactly 1020 MHz | 2023-03-05 | 1 | -5/+3 | ||
| | | | | ||||||
| | * | | core_timing: Use higher precision sleeps on Windows | 2023-03-05 | 2 | -23/+38 | ||
| | |/ | | | | | | | | | | | The precision of sleep_for and wait_for is limited to 1-1.5ms on Windows. Using SleepForOneTick() allows us to sleep for exactly one interval of the current timer resolution. This allows us to take advantage of systems that have a timer resolution of 0.5ms to reduce CPU overhead in the event loop. | |||||
| * | | Merge pull request #9910 from jbeich/libc++ | 2023-03-06 | 1 | -0/+1 | ||
| |\ \ | | | | | | | kernel: add missing header for libc++ | |||||
| | * | | kernel: add missing header for libc++ | 2023-03-06 | 1 | -0/+1 | ||
| | |/ | | | | | | | | | | | | | | | In file included from src/core/hle/kernel/k_light_lock.cpp:4: In file included from src/./core/hle/kernel/k_light_lock.h:8: src/./core/hle/kernel/k_scoped_lock.h:25:51: error: no member named 'addressof' in namespace 'std' explicit KScopedLock(T& l) : KScopedLock(std::addressof(l)) {} ~~~~~^ | |||||
| * | | Merge pull request #9905 from german77/usbssl | 2023-03-06 | 3 | -62/+102 | ||
| |\ \ | | | | | | | Service: USB, SSL, PSC: Update | |||||
| | * | | service: psc: Update names | 2023-03-05 | 1 | -9/+9 | ||
| | | | | ||||||
| | * | | service: ssl: Add missing properties and update names | 2023-03-05 | 1 | -18/+58 | ||
| | | | | ||||||
| | * | | service: usb: Update names | 2023-03-05 | 1 | -35/+35 | ||
| | |/ | ||||||
| * / | service: acc: Replace default image with a 32x32 image | 2023-03-05 | 2 | -9/+20 | ||
| |/ | ||||||
| * | Merge pull request #9884 from liamwhite/service-cleanup | 2023-03-03 | 178 | -2075/+2008 | ||
| |\ | | | | | service: miscellaneous cleanups | |||||
| | * | nvnflinger: fix name | 2023-03-01 | 51 | -340/+339 | ||
| | | | ||||||
| | * | service: move hle_ipc from kernel | 2023-03-01 | 148 | -1734/+1669 | ||
| | | | ||||||
| | * | sm:: remove unused member | 2023-03-01 | 1 | -1/+0 | ||
| | | | ||||||
| * | | kernel: be more careful about kernel address keys | 2023-03-01 | 5 | -11/+23 | ||
| | | | ||||||
| * | | kernel: refactor priority inheritance to represent locks as C++ objects | 2023-03-01 | 8 | -190/+436 | ||
| | | | ||||||
| * | | kernel: simplify AddressSpaceInfo, update values | 2023-03-01 | 1 | -66/+13 | ||
| | | | ||||||
| * | | kernel: barrier memory before condition variable write | 2023-03-01 | 1 | -15/+15 | ||
| | | | ||||||
| * | | kernel: document previous location of interrupt disables in arbiter/condvar | 2023-03-01 | 2 | -3/+9 | ||
| | | | ||||||
| * | | kernel: adjust pool allocations | 2023-03-01 | 2 | -7/+16 | ||
| | | | ||||||
| * | | kernel: simplify KAbstractSchedulerLock::Lock | 2023-03-01 | 1 | -5/+6 | ||
| | | | ||||||
| * | | kernel: add InfoType::IoRegionHint | 2023-03-01 | 1 | -0/+1 | ||
| |/ | ||||||
| * | Merge pull request #9832 from liamwhite/hle-mp | 2023-03-01 | 141 | -1153/+1569 | ||
| |\ | | | | | service: HLE multiprocess | |||||
| | * | sm:: fix lingering session initialization issues | 2023-02-21 | 2 | -2/+19 | ||
| | | | ||||||
| | * | cheat_engine: add check for hid initialization | 2023-02-21 | 1 | -2/+7 | ||
| | | | ||||||
| | * | sm:: support service registration deferral | 2023-02-21 | 5 | -8/+151 | ||
| | | | ||||||
| | * | service: refactor server architecture | 2023-02-21 | 140 | -1143/+1393 | ||
| | | | | | | | | | Converts services to have their own processes | |||||
| | * | core: defer cpu shutdown | 2023-02-21 | 1 | -3/+4 | ||
| | | | ||||||
| * | | cmake: use correct boost imported targets | 2023-02-28 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Merge pull request #9859 from liamwhite/tmem-use | 2023-02-27 | 21 | -75/+95 | ||
| |\ \ | | | | | | | service: avoid direct pointer access of transfer memory objects | |||||
| | * | | am: avoid direct pointer access of transfer memory objects | 2023-02-24 | 1 | -6/+4 | ||
| | | | | ||||||
| | * | | hid: avoid direct pointer access of transfer memory objects | 2023-02-24 | 20 | -69/+91 | ||
| | | | | ||||||
| * | | | Merge pull request #9874 from german77/violet | 2023-02-27 | 1 | -4/+8 | ||
| |\ \ \ | | | | | | | | | service: btm: Fix handle functions | |||||
| | * | | | service: btm: Fix handle functions | 2023-02-27 | 1 | -4/+8 | ||
| | | | | | ||||||
| * | | | | Merge pull request #9872 from goldenx86/partialLTO | 2023-02-27 | 1 | -0/+4 | ||
| |\ \ \ \ | |/ / / |/| | | | Partial LTO | |||||
| | * | | | Partially apply LTO to only core and video_core projects. | 2023-02-27 | 1 | -0/+4 | ||
| | | | | | ||||||
| * | | | | Revert "yuzu: config: Remove player 8 and 9 from config file" | 2023-02-26 | 3 | -98/+13 | ||
| |/ / / | ||||||
| * | | | yuzu: config: Remove player 8 and 9 from config file | 2023-02-25 | 3 | -13/+98 | ||
| | | | | ||||||
| * | | | Merge pull request #9848 from german77/metroid_motion | 2023-02-25 | 3 | -2/+30 | ||
| |\ \ \ | | | | | | | | | input_common: Implement dedicated motion from mouse | |||||
| | * | | | core: hid: Restore motion state on refresh and clamp motion values | 2023-02-21 | 3 | -2/+30 | ||
| | | | | | ||||||
| * | | | | Merge pull request #9857 from german77/fwupdate | 2023-02-25 | 13 | -2/+63 | ||
| |\ \ \ \ | | | | | | | | | | | core: Update service function tables to 16.0.0+ | |||||
| | * | | | | core: Update service function tables to 16.0.0+ | 2023-02-24 | 13 | -2/+63 | ||
| | | |/ / | |/| | | ||||||
| * / | | | core: hidbus: Fix BusType size | 2023-02-24 | 2 | -15/+15 | ||
| |/ / / | ||||||