mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-03 16:02:26 +00:00
Minor fix: enable qt gui to find PKG files with lowercase extension .pkg
This commit is contained in:
parent
9291b673a0
commit
5bb5063480
@ -577,7 +577,7 @@ void MainWindow::SaveWindowState() const {
|
|||||||
void MainWindow::InstallPkg() {
|
void MainWindow::InstallPkg() {
|
||||||
QFileDialog dialog;
|
QFileDialog dialog;
|
||||||
dialog.setFileMode(QFileDialog::ExistingFiles);
|
dialog.setFileMode(QFileDialog::ExistingFiles);
|
||||||
dialog.setNameFilter(tr("PKG File (*.PKG)"));
|
dialog.setNameFilter(tr("PKG File (*.PKG *.pkg)"));
|
||||||
if (dialog.exec()) {
|
if (dialog.exec()) {
|
||||||
QStringList fileNames = dialog.selectedFiles();
|
QStringList fileNames = dialog.selectedFiles();
|
||||||
int nPkg = fileNames.size();
|
int nPkg = fileNames.size();
|
||||||
|
Loading…
Reference in New Issue
Block a user