PlayStationMouse: Fix returning incorrect controller type

This commit is contained in:
Albert Liu 2020-11-13 01:42:31 -08:00
parent ca8fe27954
commit 3eeab81063

View file

@ -19,7 +19,7 @@ PlayStationMouse::~PlayStationMouse() = default;
ControllerType PlayStationMouse::GetType() const
{
return ControllerType::NamcoGunCon;
return ControllerType::PlayStationMouse;
}
std::optional<s32> PlayStationMouse::GetAxisCodeByName(std::string_view axis_name) const