Skip to content

Commit

Permalink
Add Skylander Dump File Types
Browse files Browse the repository at this point in the history
  • Loading branch information
deReeperJosh authored and Megamouse committed May 17, 2024
1 parent db89c1d commit 9ceb22a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/rpcs3qt/skylander_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ skylander_creator_dialog::skylander_creator_dialog(QWidget* parent)
predef_name += QString("Unknown(%1 %2).sky").arg(sky_id).arg(sky_var);
}

file_path = QFileDialog::getSaveFileName(this, tr("Create Skylander File"), predef_name, tr("Skylander Object (*.sky);;"));
file_path = QFileDialog::getSaveFileName(this, tr("Create Skylander File"), predef_name, tr("Skylander Object (*.sky);;All Files (*)"));
if (file_path.isEmpty())
{
return;
Expand Down Expand Up @@ -768,7 +768,7 @@ void skylander_dialog::create_skylander(u8 slot)

void skylander_dialog::load_skylander(u8 slot)
{
const QString file_path = QFileDialog::getOpenFileName(this, tr("Select Skylander File"), last_skylander_path, tr("Skylander (*.sky);;"));
const QString file_path = QFileDialog::getOpenFileName(this, tr("Select Skylander File"), last_skylander_path, tr("Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)"));
if (file_path.isEmpty())
{
return;
Expand Down

0 comments on commit 9ceb22a

Please sign in to comment.