summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Morph2021-11-29 17:22:59 -0500
committerGravatar Morph2021-11-29 17:22:59 -0500
commit410df5446eb23e75582020790bce2e8241da88ff (patch)
tree820ccd9142e0def66909f7778a2c630527872a33 /src/core
parentcore: hid: Mark constructors as explicit (diff)
downloadyuzu-410df5446eb23e75582020790bce2e8241da88ff.tar.gz
yuzu-410df5446eb23e75582020790bce2e8241da88ff.tar.xz
yuzu-410df5446eb23e75582020790bce2e8241da88ff.zip
general: Fix handheld typo
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/hid/controllers/npad.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp
index 04b3a68c3..35dbf12df 100644
--- a/src/core/hle/service/hid/controllers/npad.cpp
+++ b/src/core/hle/service/hid/controllers/npad.cpp
@@ -635,7 +635,7 @@ void Controller_NPad::OnMotionUpdate(const Core::Timing::CoreTiming& core_timing
635 // This buffer only is updated on handheld on HW 635 // This buffer only is updated on handheld on HW
636 npad.sixaxis_handheld_lifo.WriteNextEntry(sixaxis_handheld_state); 636 npad.sixaxis_handheld_lifo.WriteNextEntry(sixaxis_handheld_state);
637 } else { 637 } else {
638 // Hanheld doesn't update this buffer on HW 638 // Handheld doesn't update this buffer on HW
639 npad.sixaxis_fullkey_lifo.WriteNextEntry(sixaxis_fullkey_state); 639 npad.sixaxis_fullkey_lifo.WriteNextEntry(sixaxis_fullkey_state);
640 } 640 }
641 641