mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-30 16:01:09 -04:00
Use size_t in some DSP code code
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user