| 73 | } |
| 74 | |
| 75 | void InputProfile::ClearAll() |
| 76 | { |
| 77 | for (int i = 0; i < UAN; ++i) |
| 78 | { |
| 79 | auto& binds = bindings_[i]; |
| 80 | binds.clear(); |
| 81 | codeCache_[i].clear(); |
| 82 | codeCacheDirty_[i] = false; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | const std::vector<InputCode>& InputProfile::GetBindings(UserAction action) const |
| 87 | { |