diff options
| author | 2016-05-15 19:35:06 +0300 | |
|---|---|---|
| committer | 2016-05-15 19:35:06 +0300 | |
| commit | 6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b (patch) | |
| tree | 5a673aa806a992df2f01fb90748602455b6df503 /src/core/hle | |
| parent | fixup! Refactor input system (diff) | |
| download | yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.gz yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.tar.xz yuzu-6cccdcacd2c8dc442db5a8ece5e754b0ed655d8b.zip | |
fixup! fixup! Refactor input system
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 |
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() { | |||
| 74 | 74 | ||
| 75 | PadState state = VideoCore::g_emu_window->GetPadState(); | 75 | PadState state = VideoCore::g_emu_window->GetPadState(); |
| 76 | 76 | ||
| 77 | // Get current circle pad positon and update circle pad direction | 77 | // Get current circle pad position and update circle pad direction |
| 78 | s16 circle_pad_x, circle_pad_y; | 78 | s16 circle_pad_x, circle_pad_y; |
| 79 | std::tie(circle_pad_x, circle_pad_y) = VideoCore::g_emu_window->GetCirclePadState(); | 79 | std::tie(circle_pad_x, circle_pad_y) = VideoCore::g_emu_window->GetCirclePadState(); |
| 80 | state.hex |= GetCirclePadDirectionState(circle_pad_x, circle_pad_y).hex; | 80 | state.hex |= GetCirclePadDirectionState(circle_pad_x, circle_pad_y).hex; |