mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-16 16:27:33 +01:00
frontend_common: Fix settings reload bug
This clears the touch_from_button_maps array before we read new data into it because this read duplicate data on a reload otherwise.
This commit is contained in:
parent
70c3d36536
commit
6b5fb2063f
@ -214,6 +214,7 @@ void Config::ReadControlValues() {
|
||||
}
|
||||
|
||||
void Config::ReadMotionTouchValues() {
|
||||
Settings::values.touch_from_button_maps.clear();
|
||||
int num_touch_from_button_maps = BeginArray(std::string("touch_from_button_maps"));
|
||||
|
||||
if (num_touch_from_button_maps > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user