diff options
author | wwylele <wwylele@gmail.com> | 2016-05-15 18:35:06 +0200 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2016-05-15 18:35:06 +0200 |
commit | 6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b (patch) | |
tree | 5a673aa806a992df2f01fb90748602455b6df503 /src/common/emu_window.h | |
parent | fixup! Refactor input system (diff) | |
download | yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.gz yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.bz2 yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.lz yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.xz yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.zst yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.zip |
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r-- | src/common/emu_window.h | 6 |
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: /** * Signals a button press action to the HID module. * @param pad_state indicates which button to press - * @note only handle real buttons (A/B/X/Y/...), excluding analog input like circle pad. + * @note only handles real buttons (A/B/X/Y/...), excluding analog inputs like the circle pad. */ void ButtonPressed(Service::HID::PadState pad_state); /** * Signals a button release action to the HID module. * @param pad_state indicates which button to press - * @note only handle real buttons (A/B/X/Y/...), excluding analog input like circle pad. + * @note only handles real buttons (A/B/X/Y/...), excluding analog inputs like the circle pad. */ void ButtonReleased(Service::HID::PadState pad_state); @@ -123,7 +123,7 @@ public: } /** - * Gets the current cirle pad state. + * Gets the current circle pad state. * @note This should be called by the core emu thread to get a state set by the window thread. * @todo Fix this function to be thread-safe. * @return std::tuple of (x, y), where `x` and `y` are the circle pad coordinates |