fix(Core/Warden): Fix buffer not being handled during interrupt. (#15258)

This commit is contained in:
AnchyDev
2023-03-10 01:31:13 +11:00
committed by GitHub
parent 4dca18652d
commit 67bbeb7d6f
3 changed files with 157 additions and 143 deletions

View File

@@ -154,6 +154,11 @@ bool Warden::IsValidCheckSum(uint32 checksum, const uint8* data, const uint16 le
}
}
bool Warden::IsInitialized()
{
return _initialized;
}
union keyData
{
std::array<uint8, 20> bytes;