diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2020-04-08 18:19:37 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2020-07-24 15:06:39 -0700 |
| commit | 59dc7cfe7dc962ef5cddbb0055fee6923db33445 (patch) | |
| tree | 77ad73bfaf3d4079631b50c219167e6769ab26cd /Source/DSPTool | |
| parent | b996dcf8719194152c88e236c1d473ace644f0f9 (diff) | |
Use size_t in some DSP code code
Diffstat (limited to 'Source/DSPTool')
| -rw-r--r-- | Source/DSPTool/DSPTool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/DSPTool/DSPTool.cpp b/Source/DSPTool/DSPTool.cpp index bd3335189d..574d41e0b9 100644 --- a/Source/DSPTool/DSPTool.cpp +++ b/Source/DSPTool/DSPTool.cpp @@ -33,7 +33,7 @@ bool DSP::Host::IsWiiHost() { return false; } -void DSP::Host::CodeLoaded(const u8* ptr, int size) +void DSP::Host::CodeLoaded(const u8* ptr, size_t size) { } void DSP::Host::InterruptRequest() |
