mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Windows: Fix strange build error.
This commit is contained in:
parent
89595e0d8f
commit
3bc59b0ef7
1 changed files with 5 additions and 2 deletions
|
@ -253,8 +253,11 @@ bool AxisEvent(const AxisInput &axis, ViewGroup *root) {
|
|||
NEG = 2,
|
||||
};
|
||||
struct PrevState {
|
||||
DirState x = DirState::NONE;
|
||||
DirState y = DirState::NONE;
|
||||
PrevState() : x(DirState::NONE), y(DirState::NONE) {
|
||||
}
|
||||
|
||||
DirState x;
|
||||
DirState y;
|
||||
};
|
||||
struct StateKey {
|
||||
int deviceId;
|
||||
|
|
Loading…
Add table
Reference in a new issue