mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
parent
7879ebdf6b
commit
e1b1ae449b
2 changed files with 8 additions and 3 deletions
|
@ -553,12 +553,16 @@ bool InputMappingsFromPspButtonNoLock(int btn, std::vector<MultiInputMapping> *m
|
|||
return false;
|
||||
}
|
||||
bool mapped = false;
|
||||
mappings->clear();
|
||||
if (mappings) {
|
||||
mappings->clear();
|
||||
}
|
||||
for (auto &iter2 : iter->second) {
|
||||
bool ignore = ignoreMouse && iter2.HasMouse();
|
||||
if (mappings && !ignore) {
|
||||
if (!ignore) {
|
||||
mapped = true;
|
||||
mappings->push_back(iter2);
|
||||
if (mappings) {
|
||||
mappings->push_back(iter2);
|
||||
}
|
||||
}
|
||||
}
|
||||
return mapped;
|
||||
|
|
|
@ -1527,6 +1527,7 @@ void GameSettingsScreen::dialogFinished(const Screen *dialog, DialogResult resul
|
|||
RecreateViews();
|
||||
}
|
||||
|
||||
// Show/hide the Analog Alternative Speed as appropriate - need to recreate views if this changed.
|
||||
bool mapped = KeyMap::InputMappingsFromPspButton(VIRTKEY_SPEED_ANALOG, nullptr, true);
|
||||
if (mapped != analogSpeedMapped_) {
|
||||
analogSpeedMapped_ = mapped;
|
||||
|
|
Loading…
Add table
Reference in a new issue