diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2019-09-21 14:13:27 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 08:41:38 +0200 |
commit | aed884d121f666c1b347c9402ed9daa6ee3549e6 (patch) | |
tree | 40d0ae80f2bf1ca6c21ed8959941256898f70ae9 /src/core | |
parent | Rebase (diff) | |
download | yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar.gz yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar.bz2 yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar.lz yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar.xz yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.tar.zst yuzu-aed884d121f666c1b347c9402ed9daa6ee3549e6.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/hid/controllers/controller_base.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/gesture.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/keyboard.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/mouse.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/npad.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/stubbed.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/touchscreen.h | 2 | ||||
-rw-r--r-- | src/core/hle/service/hid/controllers/xpad.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/hid/controllers/controller_base.h b/src/core/hle/service/hid/controllers/controller_base.h index 47972f5fc..8bc69c372 100644 --- a/src/core/hle/service/hid/controllers/controller_base.h +++ b/src/core/hle/service/hid/controllers/controller_base.h @@ -18,7 +18,7 @@ class System; namespace Service::HID { class ControllerBase { public: - ControllerBase(Core::System& system); + explicit ControllerBase(Core::System& system); virtual ~ControllerBase(); // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/gesture.h b/src/core/hle/service/hid/controllers/gesture.h index b0f8794ba..396897527 100644 --- a/src/core/hle/service/hid/controllers/gesture.h +++ b/src/core/hle/service/hid/controllers/gesture.h @@ -12,7 +12,7 @@ namespace Service::HID { class Controller_Gesture final : public ControllerBase { public: - Controller_Gesture(Core::System& system); + explicit Controller_Gesture(Core::System& system); ~Controller_Gesture() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/keyboard.h b/src/core/hle/service/hid/controllers/keyboard.h index 37ff075b1..ef586f7eb 100644 --- a/src/core/hle/service/hid/controllers/keyboard.h +++ b/src/core/hle/service/hid/controllers/keyboard.h @@ -15,7 +15,7 @@ namespace Service::HID { class Controller_Keyboard final : public ControllerBase { public: - Controller_Keyboard(Core::System& system); + explicit Controller_Keyboard(Core::System& system); ~Controller_Keyboard() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/mouse.h b/src/core/hle/service/hid/controllers/mouse.h index 67e2647ad..df2da6ae3 100644 --- a/src/core/hle/service/hid/controllers/mouse.h +++ b/src/core/hle/service/hid/controllers/mouse.h @@ -14,7 +14,7 @@ namespace Service::HID { class Controller_Mouse final : public ControllerBase { public: - Controller_Mouse(Core::System& system); + explicit Controller_Mouse(Core::System& system); ~Controller_Mouse() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/npad.h b/src/core/hle/service/hid/controllers/npad.h index 3552c248e..f72a9900c 100644 --- a/src/core/hle/service/hid/controllers/npad.h +++ b/src/core/hle/service/hid/controllers/npad.h @@ -20,7 +20,7 @@ constexpr u32 NPAD_UNKNOWN = 16; // TODO(ogniK): What is this? class Controller_NPad final : public ControllerBase { public: - Controller_NPad(Core::System& system); + explicit Controller_NPad(Core::System& system); ~Controller_NPad() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/stubbed.h b/src/core/hle/service/hid/controllers/stubbed.h index 96dec4872..37d7d8538 100644 --- a/src/core/hle/service/hid/controllers/stubbed.h +++ b/src/core/hle/service/hid/controllers/stubbed.h @@ -10,7 +10,7 @@ namespace Service::HID { class Controller_Stubbed final : public ControllerBase { public: - Controller_Stubbed(Core::System& system); + explicit Controller_Stubbed(Core::System& system); ~Controller_Stubbed() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/touchscreen.h b/src/core/hle/service/hid/controllers/touchscreen.h index 2e8383b80..3429c84db 100644 --- a/src/core/hle/service/hid/controllers/touchscreen.h +++ b/src/core/hle/service/hid/controllers/touchscreen.h @@ -14,7 +14,7 @@ namespace Service::HID { class Controller_Touchscreen final : public ControllerBase { public: - Controller_Touchscreen(Core::System& system); + explicit Controller_Touchscreen(Core::System& system); ~Controller_Touchscreen() override; // Called when the controller is initialized diff --git a/src/core/hle/service/hid/controllers/xpad.h b/src/core/hle/service/hid/controllers/xpad.h index 813cb7755..c445ebec0 100644 --- a/src/core/hle/service/hid/controllers/xpad.h +++ b/src/core/hle/service/hid/controllers/xpad.h @@ -12,7 +12,7 @@ namespace Service::HID { class Controller_XPad final : public ControllerBase { public: - Controller_XPad(Core::System& system); + explicit Controller_XPad(Core::System& system); ~Controller_XPad() override; // Called when the controller is initialized |