diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-05 22:32:05 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-05 22:40:19 -0400 |
| commit | 22635c1800c7c4fd803b3954e20777c43fd590ba (patch) | |
| tree | edd03e8cda65a1e5cd97171a162afac2c5e738e8 /Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp | |
| parent | 96e42dff52158c483f13e631d8f2df7f7b7ea4e6 (diff) | |
Add missing override specifiers
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp b/Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp index 0e2c0bcad3..1ee374d483 100644 --- a/Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp +++ b/Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp @@ -122,7 +122,7 @@ void DeInit() } Device::Device(const XINPUT_CAPABILITIES& caps, u8 index) - : m_index(index), m_subtype(caps.SubType) + : m_subtype(caps.SubType), m_index(index) { ZeroMemory(&m_state_out, sizeof(m_state_out)); |
