mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-07 15:40:18 +00:00
Merge pull request #2698 from Tilka/evdev
evdev: fix -Wunused-private-field warning
This commit is contained in:
commit
1af8b62d9f
@ -51,11 +51,10 @@ private:
|
||||
{
|
||||
public:
|
||||
std::string GetName() const override;
|
||||
ForceFeedback(u16 type, libevdev* dev) : m_type(type), m_dev(dev), m_id(-1) { m_fd = libevdev_get_fd(dev); }
|
||||
ForceFeedback(u16 type, libevdev* dev) : m_type(type), m_id(-1) { m_fd = libevdev_get_fd(dev); }
|
||||
void SetState(ControlState state) override;
|
||||
private:
|
||||
const u16 m_type;
|
||||
libevdev* m_dev;
|
||||
int m_fd;
|
||||
int m_id;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user