Merge pull request #6350 from spycrab/qt_gc_selbug
Qt/GameCubePane: Fix file selection
This commit is contained in:
commit
75583ab098
|
@ -169,7 +169,7 @@ void GameCubePane::OnConfigPressed(int slot)
|
||||||
if (filename.isEmpty() || !File::Exists(filename.toStdString()))
|
if (filename.isEmpty() || !File::Exists(filename.toStdString()))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QString path_abs = QFileInfo(filename).absolutePath();
|
QString path_abs = QFileInfo(filename).absoluteFilePath();
|
||||||
|
|
||||||
// Memcard validity checks
|
// Memcard validity checks
|
||||||
if (memcard)
|
if (memcard)
|
||||||
|
@ -178,22 +178,28 @@ void GameCubePane::OnConfigPressed(int slot)
|
||||||
|
|
||||||
if (!mc.IsValid())
|
if (!mc.IsValid())
|
||||||
{
|
{
|
||||||
QMessageBox::critical(this, tr("Error"), tr("Cannot use that file as a memory card.\n%s\n"
|
QMessageBox::critical(this, tr("Error"), tr("Cannot use that file as a memory card.\n%1\n"
|
||||||
"is not a valid GameCube memory card file")
|
"is not a valid GameCube memory card file")
|
||||||
.arg(filename));
|
.arg(filename));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString path_b =
|
bool other_slot_memcard =
|
||||||
QFileInfo(QString::fromStdString(slot == 0 ? SConfig::GetInstance().m_strMemoryCardB :
|
m_slot_combos[slot == 0 ? SLOT_B_INDEX : SLOT_A_INDEX]->currentIndex() == EXP_MEMORYCARD;
|
||||||
SConfig::GetInstance().m_strMemoryCardA))
|
|
||||||
.absolutePath();
|
|
||||||
|
|
||||||
if (path_abs == path_b)
|
if (other_slot_memcard)
|
||||||
{
|
{
|
||||||
QMessageBox::critical(this, tr("Error"), tr("The same file can't be used in both slots."));
|
QString path_b =
|
||||||
return;
|
QFileInfo(QString::fromStdString(slot == 0 ? SConfig::GetInstance().m_strMemoryCardB :
|
||||||
|
SConfig::GetInstance().m_strMemoryCardA))
|
||||||
|
.absoluteFilePath();
|
||||||
|
|
||||||
|
if (path_abs == path_b)
|
||||||
|
{
|
||||||
|
QMessageBox::critical(this, tr("Error"), tr("The same file can't be used in both slots."));
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue