mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-03 19:21:13 +00:00
dcd2c26214
We basically never want two pads active at once, but keyboard is different. So, they need to be treated differently. Fixes #1212.
9 lines
185 B
C++
9 lines
185 B
C++
#pragma once
|
|
#include "InputDevice.h"
|
|
|
|
class KeyboardDevice : public InputDevice {
|
|
public:
|
|
virtual int UpdateState(InputState &input_state);
|
|
virtual bool IsPad() { return false; }
|
|
};
|