Standardise fixed-width integer usage in touched files

This commit is contained in:
notmatthewbeshay
2026-03-10 19:14:32 +11:00
parent 83ba8d8384
commit 0ab0fd9209
64 changed files with 229 additions and 229 deletions

View File

@@ -8,7 +8,7 @@ DLCLocalisationFile::DLCLocalisationFile(const std::wstring &path) : DLCFile(DLC
m_strings = NULL;
}
void DLCLocalisationFile::addData(uint8_t *pbData, std::uint32_t dataBytes)
void DLCLocalisationFile::addData(std::uint8_t *pbData, std::uint32_t dataBytes)
{
m_strings = new StringTable(pbData, dataBytes);
}