From 04f48f0120f7f7f3f573ef13aa0feba88aa3172c Mon Sep 17 00:00:00 2001
From: Morph <39850852+Morph1984@users.noreply.github.com>
Date: Mon, 29 Nov 2021 16:17:55 -0500
Subject: [PATCH] core: hid: Mark constructors as explicit

---
 src/core/hid/emulated_console.h | 2 +-
 src/core/hid/emulated_devices.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/hid/emulated_console.h b/src/core/hid/emulated_console.h
index 67981b844b..bb3d7ab907 100644
--- a/src/core/hid/emulated_console.h
+++ b/src/core/hid/emulated_console.h
@@ -80,7 +80,7 @@ public:
     /**
      * Contains all input data within the emulated switch console tablet such as touch and motion
      */
-    EmulatedConsole();
+    explicit EmulatedConsole();
     ~EmulatedConsole();
 
     YUZU_NON_COPYABLE(EmulatedConsole);
diff --git a/src/core/hid/emulated_devices.h b/src/core/hid/emulated_devices.h
index d4f4576511..c723276812 100644
--- a/src/core/hid/emulated_devices.h
+++ b/src/core/hid/emulated_devices.h
@@ -77,7 +77,7 @@ public:
      * Contains all input data related to external devices that aren't necesarily a controller
      * This includes devices such as the keyboard or mouse
      */
-    EmulatedDevices();
+    explicit EmulatedDevices();
     ~EmulatedDevices();
 
     YUZU_NON_COPYABLE(EmulatedDevices);