changed controller ID from 'J..' to 'C..'

This commit is contained in:
Thomas Jentzsch 2022-06-10 17:36:19 +02:00
parent 49d775c893
commit 0fc409b2fc
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ string JoyMap::getEventMappingDesc(int stick, const Event::Type event, const Eve
{
if(buf.str() != "")
buf << ", ";
buf << "J" << stick << getDesc(event, _mapping);
buf << "C" << stick << getDesc(event, _mapping);
}
}
return buf.str();

View File

@ -111,7 +111,7 @@ void JoystickDialog::handleCommand(CommandSender* sender, int cmd, int data, int
{
myRemoveBtn->setEnabled(false);
ostringstream buf;
buf << "J" << myJoyIDs[data];
buf << "C" << myJoyIDs[data];
myJoyText->setText(buf.str());
}
else