Switch from radio button to checkbox for selecting the romdisk driver mod.

This commit is contained in:
bbraun 2011-12-05 15:28:46 +00:00
parent e9aea7e095
commit ac7c3bd523
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ RomPatcher::RomPatcher()
yoffset += 25;
checksum->setMinimumSize(mywidth, 10);
applyRomdisk = new QRadioButton("Apply ROMdisk Driver", this);
applyRomdisk = new QCheckBox("Apply ROMdisk Driver", this);
applyRomdisk->move(xoffset, yoffset);
yoffset += 25;
applyRomdisk->setMinimumSize(mywidth, 10);
@ -140,7 +140,7 @@ void RomPatcher::updateChecksumUI()
{
uint32_t cksum;
GetChecksum(rom, &cksum);
checksum->setText(QString().sprintf("%#x", cksum));
checksum->setText(QString().sprintf("Checksum: %#x", cksum));
}
void RomPatcher::applyMods()

View File

@ -25,7 +25,7 @@ private:
QMenu *fileMenu;
QLabel *checksum;
QRadioButton *applyRomdisk;
QCheckBox *applyRomdisk;
QLineEdit *romdiskFile;
QPushButton *romdiskSelect;