mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2026-02-10 08:36:14 +01:00
Fixed a9ovr_data and a7ovr_data dumping from Single Binary Extractor
This commit is contained in:
@@ -148,14 +148,26 @@ void MainWindow::on_unpackerDumpFatFilesBtn_clicked()
|
|||||||
|
|
||||||
void MainWindow::on_unpackerDumpArm9OverlayFilesBtn_clicked()
|
void MainWindow::on_unpackerDumpArm9OverlayFilesBtn_clicked()
|
||||||
{
|
{
|
||||||
QMessageBox::warning(this, tr("NDS Factory"), tr("This function is currently not implemented!"));
|
QString dirPath = QFileDialog::getSaveFileName(
|
||||||
//dumpArm9OverlayFiles()
|
Q_NULLPTR,
|
||||||
|
"NDS ARM9 Overlay Data",
|
||||||
|
"a9ovr_data.bin",
|
||||||
|
"Binary (*.bin)");
|
||||||
|
|
||||||
|
if (!dirPath.isNull())
|
||||||
|
notifyExtractionResult(dumpArm9OverlayFiles(dirPath.toStdString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_unpackerDumpArm7OverlayFilesBtn_clicked()
|
void MainWindow::on_unpackerDumpArm7OverlayFilesBtn_clicked()
|
||||||
{
|
{
|
||||||
QMessageBox::warning(this, tr("NDS Factory"), tr("This function is currently not implemented!"));
|
QString dirPath = QFileDialog::getSaveFileName(
|
||||||
//dumpArm7OverlayFiles()
|
Q_NULLPTR,
|
||||||
|
"NDS ARM7 Overlay Data",
|
||||||
|
"a7ovr_data.bin",
|
||||||
|
"Binary (*.bin)");
|
||||||
|
|
||||||
|
if (!dirPath.isNull())
|
||||||
|
notifyExtractionResult(dumpArm7OverlayFiles(dirPath.toStdString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_unpackerDumpEverythingBtn_clicked()
|
void MainWindow::on_unpackerDumpEverythingBtn_clicked()
|
||||||
|
|||||||
Reference in New Issue
Block a user