mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
Add Skylander Dump File Types
This commit is contained in:
parent
db89c1d8b8
commit
9ceb22a2c0
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
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())
|
if (file_path.isEmpty())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@ -768,7 +768,7 @@ void skylander_dialog::create_skylander(u8 slot)
|
||||||
|
|
||||||
void skylander_dialog::load_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())
|
if (file_path.isEmpty())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue