diff --git a/patches.qrc b/patches.qrc index 9057a5a..ecf3251 100644 --- a/patches.qrc +++ b/patches.qrc @@ -7,7 +7,6 @@ patches/cc_spellblade.ips patches/waddle.ips patches/portraits.ips - patches/double_ap.ips patches/sound_restoration.ips patches/ned/cactuar.ips diff --git a/patches/double_ap.ips b/patches/double_ap.ips deleted file mode 100644 index f776cf5..0000000 Binary files a/patches/double_ap.ips and /dev/null differ diff --git a/src/exdeath.cc b/src/exdeath.cc index de59368..6e22691 100644 --- a/src/exdeath.cc +++ b/src/exdeath.cc @@ -60,7 +60,6 @@ void Exdeath::initMain(void) { txtROM = new QLabel("ROM:"); txtMode = new QLabel("Mode:"); txtPortraits = new QLabel("FFT-style Portraits:"); - txtAP = new QLabel("Double AP:"); txtSound = new QLabel("Sound Restoration:"); txtSound->setToolTip("Requires GBA BIOS if using VisualBoyAdvance"); txtNED = new QLabel("Neo ExDeath:"); @@ -77,7 +76,6 @@ void Exdeath::initMain(void) { selMode->addItem("Waddler Balance"); chkPortraits = new QCheckBox("Yes"); - chkAP = new QCheckBox("Yes"); chkSound = new QCheckBox("Yes"); selNED = new QComboBox(); @@ -91,12 +89,10 @@ void Exdeath::initMain(void) { layMain->addWidget(selMode, 1, 1); layMain->addWidget(txtPortraits, 2, 0); layMain->addWidget(chkPortraits, 2, 1); - layMain->addWidget(txtAP, 3, 0); - layMain->addWidget(chkAP, 3, 1); - layMain->addWidget(txtSound, 4, 0); - layMain->addWidget(chkSound, 4, 1); - layMain->addWidget(txtNED, 5, 0); - layMain->addWidget(selNED, 5, 1); + layMain->addWidget(txtSound, 3, 0); + layMain->addWidget(chkSound, 3, 1); + layMain->addWidget(txtNED, 4, 0); + layMain->addWidget(selNED, 4, 1); } void Exdeath::initInnates(void) { @@ -196,9 +192,6 @@ void Exdeath::btnApply_clicked(bool trigger) { if (chkPortraits->isChecked()) { patches << ":/patches/portraits.ips"; } - if (chkAP->isChecked()) { - patches << ":/patches/double_ap.ips"; - } if (chkSound->isChecked()) { patches << ":/patches/sound_restoration.ips"; } diff --git a/src/exdeath.hh b/src/exdeath.hh index 3c0deb6..72dc228 100644 --- a/src/exdeath.hh +++ b/src/exdeath.hh @@ -42,7 +42,6 @@ private: QLabel *txtROM; QLabel *txtMode; QLabel *txtPortraits; - QLabel *txtAP; QLabel *txtSound; QLabel *txtNED; @@ -52,7 +51,6 @@ private: QComboBox *selMode; QCheckBox *chkPortraits; - QCheckBox *chkAP; QCheckBox *chkSound; QComboBox *selNED;