Merge pull request #7358 from Techjar/qt-memcard-manager-deletion-fix

Qt/GCMemcardManager: Fix deletion of multiple files
This commit is contained in:
Pierre Bourdon 2018-08-27 04:48:07 +02:00 committed by GitHub
commit e096ca20e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -382,10 +382,15 @@ void GCMemcardManager::DeleteFiles()
return;
}
std::vector<int> file_indices;
for (int i = 0; i < count; i++)
{
auto sel = selection[i * m_slot_table[m_active_slot]->columnCount()];
int file_index = memcard->GetFileIndex(m_slot_table[m_active_slot]->row(sel));
file_indices.push_back(memcard->GetFileIndex(m_slot_table[m_active_slot]->row(sel)));
}
for (int file_index : file_indices)
{
if (memcard->RemoveFile(file_index) != SUCCESS)
QMessageBox::warning(this, tr("Remove failed"), tr("Failed to remove file"));
}