early-access version 3266
This commit is contained in:
parent
bc8022e509
commit
cc2219c160
2 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 3265.
|
||||
This is the source code for early-access 3266.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -40,6 +40,11 @@ void EmulatedConsole::SetTouchParams() {
|
|||
touch_params[index++] = std::move(touchscreen_param);
|
||||
}
|
||||
|
||||
if (Settings::values.touch_from_button_maps.empty()) {
|
||||
LOG_WARNING(Input, "touch_from_button_maps is unset by frontend config");
|
||||
return;
|
||||
}
|
||||
|
||||
const auto button_index =
|
||||
static_cast<u64>(Settings::values.touch_from_button_map_index.GetValue());
|
||||
const auto& touch_buttons = Settings::values.touch_from_button_maps[button_index].buttons;
|
||||
|
|
Loading…
Reference in a new issue