summaryrefslogtreecommitdiffstats
path: root/src/input_common/keyboard.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Use deducation guides for std::lock_guard and std::unique_lockLioncash2019-04-011-4/+4
| | | | | | | Since C++17, the introduction of deduction guides for locking facilities means that we no longer need to hardcode the mutex type into the locks themselves, making it easier to switch mutex types, should it ever be necessary in the future.
* input_common: Use std::move where applicableLioncash2018-08-031-1/+2
| | | | Avoids unnecessary atomic reference count increments and decrements
* input_common: Add missing override specifiersLioncash2018-08-031-1/+1
|
* citra-qt: release all buttons when render window focus is lostwwylele2017-03-171-0/+11
| | | | credit to @Hawkheart for the original idea
* InputCommon: add Keyboardwwylele2017-03-011-0/+82