Correct signature of MCore::MemSet to match memset

Signed-off-by: Chris Burel <burelc@amazon.com>
This commit is contained in:
Chris Burel
2021-05-24 12:04:03 -07:00
parent 916b3a94d6
commit 88a9a4fb5d
@@ -133,7 +133,7 @@ public:
* @param numBytes The number of bytes to fill.
* @result The address as specified in the first parameter.
*/
MCORE_INLINE void* MemSet(void* address, const uint32 value, size_t numBytes)
MCORE_INLINE void* MemSet(void* address, const int value, size_t numBytes)
{
return memset(address, value, numBytes);
}