summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-05-15 18:35:06 +0200
committerwwylele <wwylele@gmail.com>2016-05-15 18:35:06 +0200
commit6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b (patch)
tree5a673aa806a992df2f01fb90748602455b6df503 /src/core/hle/service/hid/hid.cpp
parentfixup! Refactor input system (diff)
downloadyuzu-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/core/hle/service/hid/hid.cpp')
-rw-r--r--src/core/hle/service/hid/hid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index a48184495..c975433f4 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -74,7 +74,7 @@ void Update() {
PadState state = VideoCore::g_emu_window->GetPadState();
- // Get current circle pad positon and update circle pad direction
+ // Get current circle pad position and update circle pad direction
s16 circle_pad_x, circle_pad_y;
std::tie(circle_pad_x, circle_pad_y) = VideoCore::g_emu_window->GetCirclePadState();
state.hex |= GetCirclePadDirectionState(circle_pad_x, circle_pad_y).hex;