mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
IOS/KD: Implement NWC24_CHECK_MAIL_NOW
This commit is contained in:
@ -693,4 +693,9 @@ bool CaseInsensitiveEquals(std::string_view a, std::string_view b)
|
||||
return std::equal(a.begin(), a.end(), b.begin(),
|
||||
[](char ca, char cb) { return Common::ToLower(ca) == Common::ToLower(cb); });
|
||||
}
|
||||
|
||||
std::string BytesToHexString(std::span<const u8> bytes)
|
||||
{
|
||||
return fmt::format("{:02x}", fmt::join(bytes, ""));
|
||||
}
|
||||
} // namespace Common
|
||||
|
Reference in New Issue
Block a user