mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Make all custom fmt::formatter's format functions const
fmt 8.0.0 requires this.
This commit is contained in:
@ -77,7 +77,7 @@ struct fmt::formatter<EFBCopyParams>
|
||||
{
|
||||
constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); }
|
||||
template <typename FormatContext>
|
||||
auto format(const EFBCopyParams& uid, FormatContext& ctx)
|
||||
auto format(const EFBCopyParams& uid, FormatContext& ctx) const
|
||||
{
|
||||
std::string copy_format;
|
||||
if (uid.copy_format == EFBCopyFormat::XFB)
|
||||
|
Reference in New Issue
Block a user