summaryrefslogtreecommitdiff
path: root/src/input_common/keyboard.cpp
AgeCommit message (Collapse)Author
2020-06-19input_common/keyboard: Remove redundant moveMerryMage
Named return value optimization automatically applies here.
2019-04-01general: Use deducation guides for std::lock_guard and std::unique_lockLioncash
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.
2018-08-02input_common: Use std::move where applicableLioncash
Avoids unnecessary atomic reference count increments and decrements
2018-08-02input_common: Add missing override specifiersLioncash
2017-03-17citra-qt: release all buttons when render window focus is lostwwylele
credit to @Hawkheart for the original idea
2017-03-01InputCommon: add Keyboardwwylele