[*] Fix dodgy mostly unused error-less T ByteBuffer::ReadTagged()

This commit is contained in:
Reece Wilson 2024-05-03 14:23:21 +01:00
parent 134816e128
commit f948c3423c

View File

@ -495,11 +495,8 @@ namespace Aurora::Memory
return value;
}
if (!Read(value))
{
return false;
}
Read(value);
return true;
return value;
}
}