Windows: Fix strange build error.

This commit is contained in:
Unknown W. Brackets 2020-03-23 08:14:36 -07:00
parent 89595e0d8f
commit 3bc59b0ef7

View file

@ -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;