mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Common/MsgHandler: Remove non-format variants of PanicAlert
They're no longer used.
This commit is contained in:
parent
82acfa6a46
commit
bab3ff0157
9 changed files with 13 additions and 70 deletions
|
@ -127,20 +127,6 @@ static bool ShowMessageAlert(std::string_view text, bool yes_no, MsgType style)
|
|||
return true;
|
||||
}
|
||||
|
||||
// This is the first stop for gui alerts where the log is updated and the
|
||||
// correct window is shown, but only for legacy printf-style messages
|
||||
bool MsgAlert(bool yes_no, MsgType style, const char* format, ...)
|
||||
{
|
||||
char buffer[2048];
|
||||
|
||||
va_list args;
|
||||
va_start(args, format);
|
||||
CharArrayFromFormatV(buffer, sizeof(buffer) - 1, s_str_translator(format).c_str(), args);
|
||||
va_end(args);
|
||||
|
||||
return ShowMessageAlert(buffer, yes_no, style);
|
||||
}
|
||||
|
||||
// This is the first stop for gui alerts where the log is updated and the
|
||||
// correct window is shown, when using fmt
|
||||
bool MsgAlertFmtImpl(bool yes_no, MsgType style, fmt::string_view format,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue