mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Use size_t in some DSP code code
This commit is contained in:
parent
b996dcf871
commit
59dc7cfe7d
7 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue