Qt/Input: use name_string instead of hard coded strings

hopefully prevents any more need for fixups like this lol
+ tend to some warnings for rebase
This commit is contained in:
Megamouse 2018-01-17 02:23:50 +01:00 committed by Ani
parent d6c4d8eec0
commit 7aa1707c2c
8 changed files with 24 additions and 7 deletions

View file

@ -248,6 +248,11 @@ std::tuple<u16, u16> PadHandlerBase::ConvertToSquirclePoint(u16 inX, u16 inY, in
return std::tuple<u16, u16>(newX, newY);
}
std::string PadHandlerBase::name_string()
{
return m_name_string;
}
int PadHandlerBase::max_devices()
{
return m_max_devices;