summaryrefslogtreecommitdiffstats
path: root/src/input_common/udp/client.h
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2019-11-03 07:04:28 +0100
committerFearlessTobi <thm.frey@gmail.com>2020-01-23 20:55:26 +0100
commit0fe11746fcb37de2465cdbbe74be6ad4a59228e5 (patch)
treedf1f0c06411a69f801e969db6892ade90dec6460 /src/input_common/udp/client.h
parentInput: UDP Client to provide motion and touch controls (diff)
downloadyuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar.gz
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar.bz2
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar.lz
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar.xz
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.tar.zst
yuzu-0fe11746fcb37de2465cdbbe74be6ad4a59228e5.zip
Diffstat (limited to 'src/input_common/udp/client.h')
-rw-r--r--src/input_common/udp/client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input_common/udp/client.h b/src/input_common/udp/client.h
index 5177f46be..b06a3f85a 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;
};