summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/npad.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-14 15:04:44 +0200
committerLioncash <mathew1800@gmail.com>2020-08-14 15:09:20 +0200
commit2296e921d261857f4cb54efdad779f1f4626270d (patch)
treeb4799cd5513bc20c18a1bc3b168b61a9f728e602 /src/core/hle/service/hid/controllers/npad.cpp
parentMerge pull request #4495 from lioncash/conv (diff)
downloadyuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.gz
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.bz2
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.lz
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.xz
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.zst
yuzu-2296e921d261857f4cb54efdad779f1f4626270d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/controllers/npad.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp
index ef67ad690..0e7794dc7 100644
--- a/src/core/hle/service/hid/controllers/npad.cpp
+++ b/src/core/hle/service/hid/controllers/npad.cpp
@@ -90,7 +90,7 @@ u32 Controller_NPad::IndexToNPad(std::size_t index) {
default:
UNIMPLEMENTED_MSG("Unknown npad index {}", index);
return 0;
- };
+ }
}
Controller_NPad::Controller_NPad(Core::System& system) : ControllerBase(system), system(system) {}
@@ -630,7 +630,7 @@ Controller_NPad::LedPattern Controller_NPad::GetLedPattern(u32 npad_id) {
default:
UNIMPLEMENTED_MSG("Unhandled npad_id {}", npad_id);
return LedPattern{0, 0, 0, 0};
- };
+ }
}
void Controller_NPad::SetVibrationEnabled(bool can_vibrate) {