1
0
Fork 0
mirror of https://github.com/gwm17/Specter.git synced 2024-11-22 10:18:50 -05:00
This commit is contained in:
Gordon McCann 2022-11-07 18:17:53 -05:00
commit 77850e4cec
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ namespace Specter {
void CharonOnlineSource::UnpackRawBuffer()
{
uint32_t* iter = (uint32_t*) m_rawBuffer.data();
uint32_t* end = iter + m_rawBuffer.size();
uint32_t* end = iter + m_rawBuffer.size() / sizeof(uint32_t);
bool wasUnpacked = false;
UnpackerResult result;

View File

@ -22,7 +22,7 @@ namespace Specter {
virtual void UnpackDatum(uint32_t* word) override;
static constexpr uint32_t s_typeMask = 0xc000000;
static constexpr uint32_t s_typeMask = 0xc0000000;
static constexpr uint32_t s_typeHeader = 0x40000000;
static constexpr uint32_t s_typeBody = 0x00000000;
static constexpr uint32_t s_typeEnd = 0xc0000000;