RTech: fix typo in comment

This commit is contained in:
Kawe Mazidjatari 2025-01-22 13:43:53 +01:00
parent bf3bd90dc7
commit 5742163756

View File

@ -287,7 +287,7 @@ const PakLoadedInfo_s* Pak_GetPakInfo(const char* const pakName)
//-----------------------------------------------------------------------------
PakPatchDataHeader_s* Pak_GetPatchDataHeader(PakFileHeader_s* const pakHeader)
{
// shouldn't be called if the pak doesn1't have patches!
// shouldn't be called if the pak doesn't have patches!
assert(pakHeader->patchIndex > 0);
return reinterpret_cast<PakPatchDataHeader_s*>(reinterpret_cast<uint8_t* const>(pakHeader) + sizeof(PakFileHeader_s));
}