Use size_t in some DSP code code

This commit is contained in:
Pokechu22
2020-04-08 18:19:37 -07:00
parent b996dcf871
commit 59dc7cfe7d
7 changed files with 10 additions and 10 deletions

View File

@ -95,7 +95,7 @@ u32 HashAdler32(const u8* data, size_t len)
// Stupid hash - but can't go back now :)
// Don't use for new things. At least it's reasonably fast.
u32 HashEctor(const u8* ptr, int length)
u32 HashEctor(const u8* ptr, size_t length)
{
u32 crc = 0;