summaryrefslogtreecommitdiffstats
path: root/src/input_common/drivers/joycon.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-29 16:01:19 +0200
committerGitHub <noreply@github.com>2023-06-29 16:01:19 +0200
commit4c705db73edfa3c7210eb5821b3f4e5324d642d1 (patch)
tree470116d2d52b3a74ad0cd761304f0f65386af708 /src/input_common/drivers/joycon.h
parentMerge pull request #10946 from goldenx86/amdBlending (diff)
parentinput_common: Allow timeouts to happen while scanning for a ring (diff)
downloadyuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar.gz
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar.bz2
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar.lz
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar.xz
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.tar.zst
yuzu-4c705db73edfa3c7210eb5821b3f4e5324d642d1.zip
Diffstat (limited to 'src/input_common/drivers/joycon.h')
-rw-r--r--src/input_common/drivers/joycon.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input_common/drivers/joycon.h b/src/input_common/drivers/joycon.h
index 4c323d7d6..112e970e1 100644
--- a/src/input_common/drivers/joycon.h
+++ b/src/input_common/drivers/joycon.h
@@ -17,7 +17,6 @@ struct Color;
struct MotionData;
struct TagInfo;
enum class ControllerType : u8;
-enum class DriverResult;
enum class IrsResolution;
class JoyconDriver;
} // namespace InputCommon::Joycon
@@ -112,7 +111,7 @@ private:
/// Returns the name of the device in text format
std::string JoyconName(Joycon::ControllerType type) const;
- Common::Input::NfcState TranslateDriverResult(Joycon::DriverResult result) const;
+ Common::Input::NfcState TranslateDriverResult(Common::Input::DriverResult result) const;
std::jthread scan_thread;