Allow picking .dmg files as SD image
This commit is contained in:
parent
b40ff12a60
commit
7395d6a6c0
|
@ -284,7 +284,7 @@ void EmuSettingsDialog::on_btnDLDISDBrowse_clicked()
|
||||||
QString file = QFileDialog::getOpenFileName(this,
|
QString file = QFileDialog::getOpenFileName(this,
|
||||||
"Select DLDI SD image...",
|
"Select DLDI SD image...",
|
||||||
EmuDirectory,
|
EmuDirectory,
|
||||||
"Image files (*.bin *.rom *.img);;Any file (*.*)");
|
"Image files (*.bin *.rom *.img *.dmg);;Any file (*.*)");
|
||||||
|
|
||||||
if (file.isEmpty()) return;
|
if (file.isEmpty()) return;
|
||||||
|
|
||||||
|
@ -320,7 +320,7 @@ void EmuSettingsDialog::on_btnDSiSDBrowse_clicked()
|
||||||
QString file = QFileDialog::getOpenFileName(this,
|
QString file = QFileDialog::getOpenFileName(this,
|
||||||
"Select DSi SD image...",
|
"Select DSi SD image...",
|
||||||
EmuDirectory,
|
EmuDirectory,
|
||||||
"Image files (*.bin *.rom *.img);;Any file (*.*)");
|
"Image files (*.bin *.rom *.img *.dmg);;Any file (*.*)");
|
||||||
|
|
||||||
if (file.isEmpty()) return;
|
if (file.isEmpty()) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue