| 7 | namespace InputCommon { |
| 8 | |
| 9 | void InputEngine::PreSetController(const PadIdentifier& identifier) { |
| 10 | std::scoped_lock lock{mutex}; |
| 11 | controller_list.try_emplace(identifier); |
| 12 | } |
| 13 | |
| 14 | void InputEngine::PreSetButton(const PadIdentifier& identifier, int button) { |
| 15 | std::scoped_lock lock{mutex}; |
no outgoing calls
no test coverage detected