Fix various typos and spelling mistakes

This commit is contained in:
Sintendo
2026-01-17 19:02:37 +01:00
parent 9ec1d70f51
commit 1e0473e44f
101 changed files with 245 additions and 243 deletions

View File

@@ -240,7 +240,7 @@ struct Message
std::optional<ToMsgType> CheckAndCastTo()
{
const u32 crc32_in_header = m_message.header.crc32;
// zero out the crc32 in the packet once we got it since that's whats needed for calculation
// zero out the crc32 in the packet once we got it since that's what's needed for calculation
m_message.header.crc32 = 0;
const u32 crc32_calculated =
Common::ComputeCRC32(reinterpret_cast<const u8*>(&m_message), sizeof(ToMsgType));