mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -06:00
When clicking "Ignore for this session", make message box handler return true, so asserts can actually be skipped with this option
This commit is contained in:
@ -68,7 +68,10 @@ static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no
|
||||
return true;
|
||||
|
||||
if (button == QMessageBox::Ignore)
|
||||
{
|
||||
Common::SetEnableAlert(false);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
||||
|
Reference in New Issue
Block a user