diff options
| author | Scott Mansell <phiren@gmail.com> | 2015-09-06 19:21:59 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2015-09-06 19:21:59 +1200 |
| commit | 61da83182ee21d8675739b7317ee1ae73e33692d (patch) | |
| tree | 50524bdb8873887850edea0a3559e29fbcb45002 /Source/Core/InputCommon/ControllerInterface/XInput/XInput.cpp | |
| parent | 728d082bc72cb1449291b6cae20cce1cce1dca92 (diff) | |
| parent | 22635c1800c7c4fd803b3954e20777c43fd590ba (diff) | |
Merge pull request #2978 from lioncash/override
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)); |
