mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-22 22:01:06 -06:00
Allow picking .dmg files as SD image
This commit is contained in:
@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user