Skip to content

Commit

Permalink
GCMemcardManager: Replace remaining panic alert with ModalMessageBox.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiralCurtiss committed Jan 28, 2021
1 parent daa7618 commit e00e6e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Core/DolphinQt/GCMemcardManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,10 @@ void GCMemcardManager::FixChecksums()
memcard->FixChecksums();

if (!memcard->Save())
PanicAlertFmtT("File write failed");
{
ModalMessageBox::warning(this, tr("Fix Checksums Failed"),
tr("Failed to write modified memory card to disk."));
}
}

void GCMemcardManager::CreateNewCard(int slot)
Expand Down

0 comments on commit e00e6e1

Please sign in to comment.