diff options
author | FearlessTobi <thm.frey@gmail.com> | 2019-11-03 07:04:28 +0100 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2020-01-23 20:55:26 +0100 |
commit | 0fe11746fcb37de2465cdbbe74be6ad4a59228e5 (patch) | |
tree | df1f0c06411a69f801e969db6892ade90dec6460 /src/input_common/udp/client.h | |
parent | ac3690f2057fb93ce18f156ff5ffd720a6d6f60c (diff) |
Address review comments
Diffstat (limited to 'src/input_common/udp/client.h')
-rw-r--r-- | src/input_common/udp/client.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input_common/udp/client.h b/src/input_common/udp/client.h index 5177f46be1..b06a3f85a5 100644 --- a/src/input_common/udp/client.h +++ b/src/input_common/udp/client.h @@ -36,10 +36,10 @@ struct DeviceStatus { // calibration data for scaling the device's touch area to 3ds struct CalibrationData { - u16 min_x; - u16 min_y; - u16 max_x; - u16 max_y; + u16 min_x{}; + u16 min_y{}; + u16 max_x{}; + u16 max_y{}; }; std::optional<CalibrationData> touch_calibration; }; |