mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
IOS/KD: Implement NWC24_CHECK_MAIL_NOW
This commit is contained in:
parent
f2b8baa82c
commit
2154941c2c
16 changed files with 569 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue