| 29 | bool configured; |
| 30 | |
| 31 | Input() |
| 32 | { |
| 33 | device = DEVICE_KEYBOARD; |
| 34 | configured = false; |
| 35 | id = -1; |
| 36 | value = -999; |
| 37 | type = TYPE_COUNT; |
| 38 | } |
| 39 | |
| 40 | Input(int dev, InputType t, int i, int val, bool conf) : device(dev), type(t), id(i), value(val), configured(conf) |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected