summaryrefslogtreecommitdiff
path: root/src/common/emu_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r--src/common/emu_window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index 0ae3ea2af..57e303b6d 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -75,14 +75,14 @@ public:
75 /** 75 /**
76 * Signals a button press action to the HID module. 76 * Signals a button press action to the HID module.
77 * @param pad_state indicates which button to press 77 * @param pad_state indicates which button to press
78 * @note only handle real buttons (A/B/X/Y/...), excluding analog input like circle pad. 78 * @note only handles real buttons (A/B/X/Y/...), excluding analog inputs like the circle pad.
79 */ 79 */
80 void ButtonPressed(Service::HID::PadState pad_state); 80 void ButtonPressed(Service::HID::PadState pad_state);
81 81
82 /** 82 /**
83 * Signals a button release action to the HID module. 83 * Signals a button release action to the HID module.
84 * @param pad_state indicates which button to press 84 * @param pad_state indicates which button to press
85 * @note only handle real buttons (A/B/X/Y/...), excluding analog input like circle pad. 85 * @note only handles real buttons (A/B/X/Y/...), excluding analog inputs like the circle pad.
86 */ 86 */
87 void ButtonReleased(Service::HID::PadState pad_state); 87 void ButtonReleased(Service::HID::PadState pad_state);
88 88
@@ -123,7 +123,7 @@ public:
123 } 123 }
124 124
125 /** 125 /**
126 * Gets the current cirle pad state. 126 * Gets the current circle pad state.
127 * @note This should be called by the core emu thread to get a state set by the window thread. 127 * @note This should be called by the core emu thread to get a state set by the window thread.
128 * @todo Fix this function to be thread-safe. 128 * @todo Fix this function to be thread-safe.
129 * @return std::tuple of (x, y), where `x` and `y` are the circle pad coordinates 129 * @return std::tuple of (x, y), where `x` and `y` are the circle pad coordinates