mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 05:37:58 -05:00
core, input_common: Miscellaneous fixes
bcat: Fix settings access telemetry_session: Fix settings accesses So this is what I get for testing with the web service disabled. touch_from_button: Fix settings access for clang
This commit is contained in:
@ -12,7 +12,8 @@ namespace InputCommon {
|
||||
class TouchFromButtonDevice final : public Input::TouchDevice {
|
||||
public:
|
||||
TouchFromButtonDevice() {
|
||||
const auto button_index = Settings::values.touch_from_button_map_index.GetValue();
|
||||
const auto button_index =
|
||||
static_cast<u64>(Settings::values.touch_from_button_map_index.GetValue());
|
||||
const auto& buttons = Settings::values.touch_from_button_maps[button_index].buttons;
|
||||
|
||||
for (const auto& config_entry : buttons) {
|
||||
|
Reference in New Issue
Block a user