summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | Merge pull request #9675 from Morph1984/ini-concatGravatar liamwhite2023-01-251-2/+8
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | default_ini: Split and concatenate the config string literal
| * | | | | | | | | | | default_ini: Split and concatenate the config string literalGravatar Morph2023-01-251-2/+8
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are dangerously close to MSVC's 16384 character limit for string literals. Breaking this string up and concatenating will allow for more settings to be added in the future.
* | | | | | | | | | | Merge pull request #9668 from Morph1984/qt-why-is-this-not-the-defaultGravatar liamwhite2023-01-2510-17/+8
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | main: Globally disable the "?" button on dialogs
| * | | | | | | | | | | main: Globally disable the "?" button on dialogsGravatar Morph2023-01-2510-17/+8
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sets the AA_DisableWindowContextHelpButton attribute to disable this useless button globally.
* | | | | | | | | | | Merge pull request #9676 from german77/revert-stick-rangeGravatar liamwhite2023-01-252-12/+9
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / | |/| | | | / / / / / | |_|_|_|_|/ / / / / |/| | | | | | | | | Revert #9617 and fix it on input_common
| * | | | | | | | | Revert 9617 and fix it on input_commonGravatar Narr the Reg2023-01-252-12/+9
| |/ / / / / / / /
* / / / / / / / / input_common: add missing header for libc++ after 340f15d1fa79Gravatar Jan Beich2023-01-251-0/+1
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/input_common/drivers/joycon.cpp:187:26: error: no member named 'find_if' in namespace 'std::ranges' std::ranges::find_if(left_joycons, [](auto& device) { return !device->IsConnected(); }); ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:193:54: error: no member named 'find_if' in namespace 'std::ranges' const auto unconnected_device = std::ranges::find_if( ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:393:51: error: no member named 'find_if' in namespace 'std::ranges' const auto matching_device = std::ranges::find_if( ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:402:51: error: no member named 'find_if' in namespace 'std::ranges' const auto matching_device = std::ranges::find_if( ~~~~~~~~~~~~~^
* | | | | | | | Merge pull request #9662 from abouvier/cmake-llvmGravatar bunnei2023-01-242-5/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | cmake: prefer system llvm library
| * | | | | | | | cmake: prefer system llvm libraryGravatar Alexandre Bouvier2023-01-232-5/+3
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #9492 from german77/joycon_releaseGravatar liamwhite2023-01-2458-408/+5812
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Input_common: Implement custom joycon driver v2
| * | | | | | | core: hid: Make use of SCOPE_EXIT and SCOPE_GUARD where applicableGravatar Narr the Reg2023-01-201-67/+38
| | | | | | | |
| * | | | | | | input_common: Fix joycon mappingsGravatar german772023-01-202-57/+53
| | | | | | | |
| * | | | | | | input_common: Address byte reviewGravatar german772023-01-2016-243/+220
| | | | | | | |
| * | | | | | | core: hid: Only set the polling mode to the correct sideGravatar Narr the Reg2023-01-198-27/+70
| | | | | | | |
| * | | | | | | input_common: Drop Pro controller support from custom driverGravatar german772023-01-194-43/+4
| | | | | | | |
| * | | | | | | input_common: Fix issue where ring and irs are enabled at the same timeGravatar german772023-01-194-15/+24
| | | | | | | |
| * | | | | | | input_common: Implement joycon ir cameraGravatar Narr the Reg2023-01-1915-23/+608
| | | | | | | |
| * | | | | | | yuzu: Add ring controller test buttonGravatar german772023-01-1910-174/+370
| | | | | | | |
| * | | | | | | input_common: Use DriverResult on all enginesGravatar german772023-01-1917-104/+100
| | | | | | | |
| * | | | | | | Address review commentsGravatar german772023-01-1914-46/+44
| | | | | | | |
| * | | | | | | core: hid: Fix input regressionsGravatar Narr the Reg2023-01-196-41/+56
| | | | | | | |
| * | | | | | | input_common: Implement joycon nfcGravatar german772023-01-199-13/+544
| | | | | | | |
| * | | | | | | input_common: Add dual joycon supportGravatar Narr the Reg2023-01-191-24/+101
| | | | | | | |
| * | | | | | | input_common: Add support for joycon ring controllerGravatar Narr the Reg2023-01-199-4/+272
| | | | | | | |
| * | | | | | | input_common: Add support for joycon input reportsGravatar Narr the Reg2023-01-198-100/+798
| | | | | | | |
| * | | | | | | input_common: Use calibration from joyconGravatar Narr the Reg2023-01-195-0/+231
| | | | | | | |
| * | | | | | | input_common: Add support for joycon generic functionsGravatar Narr the Reg2023-01-195-3/+310
| | | | | | | |
| * | | | | | | input_common: Add joycon low level functionsGravatar Narr the Reg2023-01-193-0/+434
| | | | | | | |
| * | | | | | | service: hid: Set led pattern and fix color detectionGravatar Narr the Reg2023-01-191-0/+5
| | | | | | | |
| * | | | | | | core: hid: Enable pulling color data from controllersGravatar Narr the Reg2023-01-199-2/+246
| | | | | | | |
| * | | | | | | core: hid: Migrate ring from emulated devices to emulated controllerGravatar Narr the Reg2023-01-198-88/+105
| | | | | | | |
| * | | | | | | yuzu: Update controller colors and button namesGravatar Narr the Reg2023-01-192-3/+27
| | | | | | | |
| * | | | | | | input_common: Disable SDL driver with switch controllersGravatar Narr the Reg2023-01-196-6/+44
| | | | | | | |
| * | | | | | | input_common: Initial skeleton for custom joycon driverGravatar Narr the Reg2023-01-198-3/+1786
| | | | | | | |
* | | | | | | | Merge pull request #9555 from abouvier/catch2-updateGravatar liamwhite2023-01-2215-23/+14
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | tests: update catch2 to 3.0.1
| * | | | | | | tests: update catch2 to 3.0.1Gravatar Alexandre Bouvier2023-01-0515-23/+14
| | | | | | | |
* | | | | | | | Merge pull request #9660 from german77/koreaToTaiwanGravatar liamwhite2023-01-224-8/+21
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | yuzu: Fix language comobox crash
| * | | | | | | | yuzu: Fix language comobox crashGravatar german772023-01-224-8/+21
| | |_|/ / / / / | |/| | | | | |
* | | | | | | | Merge pull request #9656 from liamwhite/nsightGravatar liamwhite2023-01-221-4/+4
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | nsight_aftermath_tracker: update for latest Aftermath SDK
| * | | | | | | | nsight_aftermath_tracker: update for latest Aftermath SDKGravatar Liam2023-01-211-4/+4
| |/ / / / / / /
* | | | | | | | Merge pull request #9637 from SaiKai/repeat_shortcutsGravatar liamwhite2023-01-224-27/+30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | allow volume up/down hotkeys to be repeated
| * | | | | | | | fix formatGravatar Jonas Gutenschwager2023-01-182-4/+2
| | | | | | | | |
| * | | | | | | | allow volume up/down hotkeys to be repeatedGravatar Jonas Gutenschwager2023-01-184-27/+32
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Merge pull request #9617 from german77/off_by_oneGravatar liamwhite2023-01-221-2/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | core: hid: Fix stick minimum range
| * | | | | | | | core: hid: Fix stick minimum rangeGravatar german772023-01-141-2/+10
| | | | | | | | |
* | | | | | | | | Merge pull request #9613 from Kelebek1/demangleGravatar liamwhite2023-01-224-19/+56
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | Add stacktrace symbol demangling
| * | | | | | | | Be careful of mangled out of bounds readGravatar Kelebek12023-01-142-9/+9
| | | | | | | | |
| * | | | | | | | Move demangle impl to cppGravatar Kelebek12023-01-143-23/+36
| | | | | | | | |
| * | | | | | | | Add stacktrace symbol demanglingGravatar Kelebek12023-01-143-15/+39
| |/ / / / / / /
* | | | | | | | Merge pull request #9611 from liamwhite/patch-1Gravatar bunnei2023-01-201-3/+23
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | debugger: add host fastmem pointer fetch command