dep/fmt: Bump to v11.0.2
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
#include "common/path.h"
|
||||
#include "common/string_util.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
#include "zlib.h"
|
||||
|
||||
#include <array>
|
||||
@ -509,7 +510,7 @@ bool CDImagePBP::OpenDisc(u32 index, Error* error)
|
||||
if (index >= m_disc_offsets.size())
|
||||
{
|
||||
ERROR_LOG("File does not contain disc {}", index + 1);
|
||||
Error::SetString(error, fmt::format("File does not contain disc {}", index + 1));
|
||||
Error::SetStringFmt(error, "File does not contain disc {}", index + 1);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user