| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | | | Merge pull request #8402 from liamwhite/better-step | 2022-06-01 | 13 | -122/+239 | ||
| |\ \ \ \ \ | |/ / / / |/| | | | | core/debugger: Improved stepping mechanism and misc fixes | |||||
| | * | | | | core/debugger: Improved stepping mechanism and misc fixes | 2022-06-01 | 13 | -122/+239 | ||
| | | | | | | ||||||
| * | | | | | Merge pull request #8404 from Morph1984/virtual | 2022-06-01 | 3 | -2/+6 | ||
| |\ \ \ \ \ | | | | | | | | | | | | | core/debugger: Define defaulted virtual destructors | |||||
| | * | | | | | core/debugger: Define defaulted virtual destructors | 2022-06-01 | 3 | -2/+6 | ||
| | |/ / / / | | | | | | | | | | | | | | | | Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions. | |||||
| * / / / / | gdbstub: Explicitly cast return type to u8 | 2022-06-01 | 1 | -2/+2 | ||
| |/ / / / | | | | | | | | | | | | | Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8. | |||||
| * / / / | core/debugger: Implement new GDB stub debugger | 2022-06-01 | 19 | -26/+1422 | ||
| |/ / / | ||||||
| * | | | Merge pull request #8368 from german77/seventimes | 2022-05-30 | 6 | -368/+643 | ||
| |\ \ \ | | | | | | | | | Service: hid: Several improvements and implementations | |||||
| | * | | | service: hid: Implement ResetIsSixAxisSensorDeviceNewlyAssigned | 2022-05-27 | 5 | -6/+125 | ||
| | | | | | | | | | | | | | | | | | Needed by Nintendo Switch Sports | |||||
| | * | | | service: hid: Implement LoadSixAxisSensorCalibrationParameter and ↵ | 2022-05-27 | 5 | -3/+136 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | GetSixAxisSensorIcInformation Needed by Nintendo Switch Sports | |||||
| | * | | | service: hid: Implement EnableSixAxisSensorUnalteredPassthrough and ↵ | 2022-05-27 | 4 | -2/+88 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | IsSixAxisSensorUnalteredPassthroughEnabled Needed by Nintendo Switch Sports | |||||
| | * | | | service: hid: Add error handling to sixaxis functions | 2022-05-27 | 3 | -31/+55 | ||
| | | | | | ||||||
| | * | | | service: hid: Refractor sixaxis functions | 2022-05-27 | 2 | -185/+88 | ||
| | | | | | ||||||
| | * | | | service: hid: Implement MergeSingleJoyAsDualJoy according to RE | 2022-05-27 | 4 | -65/+57 | ||
| | | | | | ||||||
| | * | | | service: hid: Add error handling to setNpadAssignment and variants | 2022-05-27 | 3 | -23/+27 | ||
| | | | | | ||||||
| | * | | | service: hid: Quick RE fixes and comments | 2022-05-27 | 4 | -54/+68 | ||
| | | | | | ||||||
| * | | | | Merge pull request #8332 from Morph1984/reduce_exec_size | 2022-05-29 | 1 | -4/+3 | ||
| |\ \ \ \ | | | | | | | | | | | general: Use smaller array types where applicable | |||||
| | * | | | | time_zone_manager: Use s8 for month length tables | 2022-05-13 | 1 | -4/+3 | ||
| | | | | | | | | | | | | | | | | | | | | | Using this smaller type saves 512 bytes in the compiled executable. | |||||
| * | | | | | Merge pull request #8374 from german77/asnycvibrations | 2022-05-28 | 1 | -5/+29 | ||
| |\ \ \ \ \ | | | | | | | | | | | | | input_common: Make vibration request async | |||||
| | * | | | | | input_common: Make vibration request async | 2022-05-23 | 1 | -5/+29 | ||
| | | |/ / / | |/| | | | ||||||
| * / | | | | input_common: touch: Rewrite touch driver to support multiple touch points | 2022-05-23 | 3 | -5/+20 | ||
| |/ / / / | ||||||
| * / / / | general: Avoid ambiguous format_to compilation errors | 2022-05-14 | 1 | -1/+1 | ||
| |/ / / | | | | | | | | | | | | | | | | | | | Ensures that we're using the fmt version of format_to. These are also the only three outliers. All of the other formatters we have are properly qualified. | |||||
| * | | | service: hid: Fix motion refresh rate | 2022-05-06 | 2 | -2/+6 | ||
| | | | | ||||||
| * | | | service: hid: Disable correctly motion input | 2022-05-06 | 1 | -50/+41 | ||
| |/ / | ||||||
| * | | hle/result: Update std::expected replacement message | 2022-05-03 | 1 | -1/+1 | ||
| | | | | | | | | | std::expected is included in C++23 | |||||
| * | | hle/result: Add ResultRange overload in ResultVal | 2022-05-03 | 1 | -1/+3 | ||
| | | | | | | | | | Also marks the implicit conversion operator as constexpr instead of consteval as the constructor is not constant evaluated. | |||||
| * | | Merge pull request #8272 from german77/stick_range | 2022-05-03 | 1 | -2/+2 | ||
| |\ \ | | | | | | | yuzu: config: Improve analog stick mapping | |||||
| | * | | yuzu: Config allow to delete single axis directions when buttons are mapped ↵ | 2022-04-26 | 1 | -2/+2 | ||
| | | | | | | | | | | | | | to a stick | |||||
| * | | | hle/result: Implement ResultRange | 2022-05-02 | 1 | -0/+42 | ||
| | | | | | | | | | | | | | | | | | | | A ResultRange defines an inclusive range of error descriptions within an error module. This can be used to check whether the description of a given ResultCode falls within the range. The conversion function returns a ResultCode with its description set to description_start. | |||||
| * | | | Merge pull request #8274 from german77/firmware | 2022-04-29 | 2 | -1/+21 | ||
| |\ \ \ | | | | | | | | | service: hid: Stub IsFirmwareUpdateNeededForNotification | |||||
| | * | | | service: hid: Stub IsFirmwareUpdateNeededForNotification | 2022-04-27 | 2 | -1/+21 | ||
| | |/ / | | | | | | | | | | Used in Fitness Boxing 2: Rhythm & Exercise (0100073011382000) | |||||
| * | | | chore: add missing SPDX tags | 2022-04-28 | 3 | -25/+8 | ||
| | | | | | | | | | | | | | Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52 | |||||
| * | | | Merge pull request #8229 from german77/reinterpret2 | 2022-04-27 | 22 | -386/+429 | ||
| |\ \ \ | |/ / |/| | | service: hid: Access shared memory directly | |||||
| | * | | service: hid: Ensure all structs are initialized | 2022-04-23 | 16 | -104/+105 | ||
| | | | | ||||||
| | * | | service: hid: Access shared memory directly | 2022-04-23 | 21 | -305/+347 | ||
| | | | | ||||||
| * | | | Merge pull request #8261 from liamwhite/jit-cleanup | 2022-04-24 | 3 | -132/+225 | ||
| |\ \ \ | | | | | | | | | service: jit: document and clean up | |||||
| | * | | | service: jit: document and clean up | 2022-04-24 | 3 | -132/+225 | ||
| | |/ / | ||||||
| * | | | Merge pull request #8260 from Morph1984/c4146 | 2022-04-24 | 1 | -1/+1 | ||
| |\ \ \ | | | | | | | | | kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF | |||||
| | * | | | kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF | 2022-04-24 | 1 | -1/+1 | ||
| | |/ / | | | | | | | | | | Resolves the C4146 compiler warning on MSVC. | |||||
| * / / | Remove unused PrepareReschedule function | 2022-04-24 | 7 | -20/+0 | ||
| |/ / | ||||||
| * | | general: Convert source file copyright comments over to SPDX | 2022-04-23 | 708 | -2224/+1427 | ||
| | | | | | | | | | | | 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. | |||||
| * | | Merge pull request #7976 from BytesGalore/master | 2022-04-22 | 1 | -1/+2 | ||
| |\ \ | | | | | | | loader: log the type of mismatching file-extension | |||||
| | * | | loader: log the type of mismatching file-extension | 2022-03-03 | 1 | -1/+2 | ||
| | | | | ||||||
| * | | | Merge pull request #8222 from german77/sixaxis_test | 2022-04-21 | 6 | -99/+363 | ||
| |\ \ \ | | | | | | | | | service: hid: Improve accuracy of sixaxis functions | |||||
| | * | | | service: hid: Improve accuracy of sixaxis functions | 2022-04-18 | 6 | -99/+363 | ||
| | | | | | ||||||
| * | | | | core/arm: separate backtrace collection | 2022-04-20 | 6 | -90/+98 | ||
| |/ / / | ||||||
| * | | | Merge pull request #6558 from german77/ringcon2 | 2022-04-16 | 16 | -26/+1748 | ||
| |\ \ \ | | | | | | | | | hidbus: Implement hidbus and ringcon | |||||
| | * | | | yuzu: Add custom ringcon configuration | 2022-04-16 | 7 | -64/+133 | ||
| | | | | | ||||||
| | * | | | hidbus: Implement hidbus and ringcon | 2022-04-16 | 14 | -26/+1679 | ||
| | | | | | ||||||
| * | | | | Merge pull request #8188 from merryhime/jit-race-page-table-changed | 2022-04-16 | 4 | -57/+84 | ||
| |\ \ \ \ | |/ / / |/| | | | dynarmic: Fix race when switching page tables | |||||
| | * | | | dynarmic: Fix race when switching page tables | 2022-04-10 | 4 | -57/+84 | ||
| | | | | | ||||||