From df5af508664080e45e213318b1ae70aa47358075 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 4 Oct 2019 15:04:23 +0200 Subject: [PATCH] evdev: add missing override removes a warning --- rpcs3/evdev_joystick_handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/evdev_joystick_handler.h b/rpcs3/evdev_joystick_handler.h index 02b604fc71..cfab686d3a 100644 --- a/rpcs3/evdev_joystick_handler.h +++ b/rpcs3/evdev_joystick_handler.h @@ -367,7 +367,7 @@ private: protected: PadHandlerBase::connection update_connection(const std::shared_ptr& device) override; void get_mapping(const std::shared_ptr& device, const std::shared_ptr& pad) override; - void apply_pad_data(const std::shared_ptr& device, const std::shared_ptr& pad); + void apply_pad_data(const std::shared_ptr& device, const std::shared_ptr& pad) override; bool get_is_left_trigger(u64 keyCode) override; bool get_is_right_trigger(u64 keyCode) override; bool get_is_left_stick(u64 keyCode) override;