mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
fafa9c9bfd
Also avoids failing to start if XInput 1.3 is not installed.
19 lines
392 B
C++
19 lines
392 B
C++
#pragma once
|
|
|
|
#include "InputDevice.h"
|
|
#include "Xinput.h"
|
|
|
|
|
|
class XinputDevice : public InputDevice {
|
|
public:
|
|
XinputDevice();
|
|
~XinputDevice();
|
|
virtual int UpdateState(InputState &input_state);
|
|
virtual bool IsPad() { return true; }
|
|
private:
|
|
void ApplyButtons(XINPUT_STATE &state, InputState &input_state);
|
|
int gamepad_idx;
|
|
int check_delay;
|
|
XINPUT_STATE prevState;
|
|
u32 prevButtons;
|
|
}; |