diff options
Diffstat (limited to 'src/input_common/drivers')
| -rw-r--r-- | src/input_common/drivers/joycon.cpp | 4 | ||||
| -rw-r--r-- | src/input_common/drivers/joycon.h | 2 | 
2 files changed, 2 insertions, 4 deletions
| diff --git a/src/input_common/drivers/joycon.cpp b/src/input_common/drivers/joycon.cpp index cedc94e63..4fcfb4510 100644 --- a/src/input_common/drivers/joycon.cpp +++ b/src/input_common/drivers/joycon.cpp @@ -668,12 +668,10 @@ std::string Joycons::JoyconName(Joycon::ControllerType type) const {          return "Right Joycon";      case Joycon::ControllerType::Pro:          return "Pro Controller"; -    case Joycon::ControllerType::Grip: -        return "Grip Controller";      case Joycon::ControllerType::Dual:          return "Dual Joycon";      default: -        return "Unknown Joycon"; +        return "Unknown Switch Controller";      }  }  } // namespace InputCommon diff --git a/src/input_common/drivers/joycon.h b/src/input_common/drivers/joycon.h index 316d383d8..2149ab7fd 100644 --- a/src/input_common/drivers/joycon.h +++ b/src/input_common/drivers/joycon.h @@ -15,7 +15,7 @@ using SerialNumber = std::array<u8, 15>;  struct Battery;  struct Color;  struct MotionData; -enum class ControllerType; +enum class ControllerType : u8;  enum class DriverResult;  enum class IrsResolution;  class JoyconDriver; | 
