summaryrefslogtreecommitdiffstats
path: root/src/input_common/mouse (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-07-17input_common: Fix mouse panning behaivourgerman771-1/+1
2021-07-09configure_input: Use u8 for mouse sensitivityameerj1-1/+1
2021-07-08general: Code formatting improvementslat9nq1-2/+2
Slight improvements to readability. Dropped suggestions for string_view (settings.h:101), pass by value (settings.h:82), reverting double to a float (config.cpp:316), and other smaller ones, some out of scope. Addresses review feedback. Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
2021-06-28general: Make most settings a BasicSettinglat9nq1-1/+2
Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
2021-06-24Add missing includes (#6521)Chloe1-0/+2
* Add missing includes * Add array
2021-06-22input_common/mouse_input: Fix data raceRodrigo Locatti2-12/+10
Fix data race using std::jthread and std::stop_token.
2021-05-03input_common: Release mouse buttons on out of focusgerman772-1/+16
2021-04-15common: Move settings to common from core.bunnei2-2/+2
- Removes a dependency on core and input_common from common.
2021-03-06Enable mouse toggle buttonsgerman773-5/+56
2021-02-28inputCommon: Mouse fixesgerman772-8/+15
2021-02-14Improve mouse panninggerman1-5/+21
2021-02-08Add mouse panninggerman3-3/+39
2021-02-06Add SL SR vectors, change dual joycon view, add missing raw data from keyboard/mousegerman1-0/+10
2021-01-02general: Fix various spelling errorsMorph1-1/+1
2020-12-27Allow to invert analog axis with right clickgerman1-5/+20
2020-12-03mouse_poller: Remove unused includesLioncash1-3/+1
2020-12-03mouse_input: Invert conditional in UpdateYuzuSettings()Lioncash1-4/+6
Allows the struct to be constructed in place.
2020-12-03mouse_input: Remove two casts and amend some formattingLioncash1-11/+14
Removes the use of two static casts and improves the readability of some vectors slightly.
2020-12-03mouse_input: Resolve a -Wdocumentation warningLioncash1-1/+1
2020-12-03mouse_input: Remove unused includesLioncash2-7/+3
2020-12-01Fix implicit conversion in mouse inputgerman1-6/+8
2020-11-26Implement full mouse supportgerman4-0/+594