summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/gesture.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-11-23 18:36:19 +0100
committerGitHub <noreply@github.com>2023-11-23 18:36:19 +0100
commit0b766e4523dea156d69aab1a2a43b55f50c65071 (patch)
tree44715eb026414d084f3f493f137b578339884a99 /src/core/hle/service/hid/controllers/gesture.h
parentMerge pull request #12123 from merryhime/explicit-this (diff)
parentservice: hid: Create appropriate hid resources (diff)
downloadyuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar.gz
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar.bz2
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar.lz
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar.xz
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.tar.zst
yuzu-0b766e4523dea156d69aab1a2a43b55f50c65071.zip
Diffstat (limited to 'src/core/hle/service/hid/controllers/gesture.h')
-rw-r--r--src/core/hle/service/hid/controllers/gesture.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.h b/src/core/hle/service/hid/controllers/gesture.h
index 0d6099ea0..4c6f8ee07 100644
--- a/src/core/hle/service/hid/controllers/gesture.h
+++ b/src/core/hle/service/hid/controllers/gesture.h
@@ -12,10 +12,10 @@
#include "core/hle/service/hid/ring_lifo.h"
namespace Service::HID {
-class Controller_Gesture final : public ControllerBase {
+class Gesture final : public ControllerBase {
public:
- explicit Controller_Gesture(Core::HID::HIDCore& hid_core_, u8* raw_shared_memory_);
- ~Controller_Gesture() override;
+ explicit Gesture(Core::HID::HIDCore& hid_core_, u8* raw_shared_memory_);
+ ~Gesture() override;
// Called when the controller is initialized
void OnInit() override;