mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
General: Convert PanicAlerts over to fmt equivalent
Converts lingering panic alert calls over to the fmt-capable ones.
This commit is contained in:
parent
5abae61a8c
commit
139d4fc76e
45 changed files with 206 additions and 195 deletions
|
@ -504,7 +504,7 @@ static void EncodeRGBA6(u8* dst, const u8* src, EFBCopyFormat format, bool yuv)
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -743,7 +743,7 @@ static void EncodeRGBA6halfscale(u8* dst, const u8* src, EFBCopyFormat format, b
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -960,7 +960,7 @@ static void EncodeRGB8(u8* dst, const u8* src, EFBCopyFormat format, bool yuv)
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1192,7 +1192,7 @@ static void EncodeRGB8halfscale(u8* dst, const u8* src, EFBCopyFormat format, bo
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1300,7 +1300,7 @@ static void EncodeZ24(u8* dst, const u8* src, EFBCopyFormat format)
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1414,7 +1414,7 @@ static void EncodeZ24halfscale(u8* dst, const u8* src, EFBCopyFormat format)
|
|||
break;
|
||||
|
||||
default:
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", static_cast<int>(format));
|
||||
PanicAlertFmt("Unknown texture copy format: {:#x}\n", format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue