mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-09 01:28:41 +00:00
Minor fix: enable qt gui to find PKG files with lowercase extension .pkg
This commit is contained in:
parent
9291b673a0
commit
5bb5063480
1 changed files with 2 additions and 2 deletions
|
@ -577,7 +577,7 @@ void MainWindow::SaveWindowState() const {
|
|||
void MainWindow::InstallPkg() {
|
||||
QFileDialog dialog;
|
||||
dialog.setFileMode(QFileDialog::ExistingFiles);
|
||||
dialog.setNameFilter(tr("PKG File (*.PKG)"));
|
||||
dialog.setNameFilter(tr("PKG File (*.PKG *.pkg)"));
|
||||
if (dialog.exec()) {
|
||||
QStringList fileNames = dialog.selectedFiles();
|
||||
int nPkg = fileNames.size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue