mirror of https://github.com/stella-emu/stella.git
changed controller ID from 'J..' to 'C..'
This commit is contained in:
parent
129df6a057
commit
600e593040
|
@ -168,7 +168,7 @@ string JoyMap::getEventMappingDesc(int stick, const Event::Type event, const Eve
|
||||||
{
|
{
|
||||||
if(buf.str() != "")
|
if(buf.str() != "")
|
||||||
buf << ", ";
|
buf << ", ";
|
||||||
buf << "J" << stick << getDesc(event, _mapping);
|
buf << "C" << stick << getDesc(event, _mapping);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return buf.str();
|
return buf.str();
|
||||||
|
|
|
@ -111,7 +111,7 @@ void JoystickDialog::handleCommand(CommandSender* sender, int cmd, int data, int
|
||||||
{
|
{
|
||||||
myRemoveBtn->setEnabled(false);
|
myRemoveBtn->setEnabled(false);
|
||||||
ostringstream buf;
|
ostringstream buf;
|
||||||
buf << "J" << myJoyIDs[data];
|
buf << "C" << myJoyIDs[data];
|
||||||
myJoyText->setText(buf.str());
|
myJoyText->setText(buf.str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue