aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-03-08 21:28:23 -0400
committerGravatar bunnei <bunneidev@gmail.com>2015-03-10 18:05:19 -0400
commit432aa1044c12b9b2ac9815c6ab41917ac971a616 (patch)
treef95d2c33a68d50d1c402e4662c946be24333a0b8
parente9b9f1842be5afa794f03e2a0fa29d49cfca2601 (diff)
HID: Changed TouchDataEntry `valid` to a BitField and added some doc strings.
-rw-r--r--src/core/hle/service/hid/hid.cpp2
-rw-r--r--src/core/hle/service/hid/hid.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index 29213e0f..72e2d63e 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -156,7 +156,7 @@ void TouchUpdateComplete() {
current_touch_entry->y = next_touch_y;
// TODO(bunnei): Verify this behavior on real hardware
- current_touch_entry->data_valid = (next_touch_x || next_touch_y) ? 1 : 0;
+ current_touch_entry->valid = (next_touch_x || next_touch_y) ? 1 : 0;
// TODO(bunnei): We're not doing anything with offset 0xA8 + 0x18 of HID SharedMemory, which
// supposedly is "Touch-screen entry, which contains the raw coordinate data prior to being
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index e4665a43..7fdf5828 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -80,9 +80,9 @@ struct PadDataEntry {
* Structure of a single entry of touch state history within HID shared memory
*/
struct TouchDataEntry {
- u16 x;
- u16 y;
- u32 data_valid;
+ u16 x; ///< Y-coordinate of a touchpad press on the lower screen
+ u16 y; ///< X-coordinate of a touchpad press on the lower screen
+ BitField<0,7,u32> valid; ///< Set to 1 when this entry contains actual X/Y data, otherwise 0
};
/**