diff options
author | Ladislav Zezula <zezula@volny.cz> | 2024-03-23 06:39:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 06:39:29 +0100 |
commit | d589102f9af750c4afc7a46a5821e18fdc999a34 (patch) | |
tree | 8b344d7a53f7b51028970939a41c2176741d81cc /src | |
parent | dbe502676f27ac8510a52ff7b3ab8e03e81179fe (diff) | |
parent | fe5d5f416fa3c9f8ef83fa8e36860fdf82dc8f4f (diff) |
Merge pull request #322 from Chaosvex/arg_fix
Thanks for the fix :-)
Diffstat (limited to 'src')
-rw-r--r-- | src/adpcm/adpcm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adpcm/adpcm.h b/src/adpcm/adpcm.h index 22a8095..169d465 100644 --- a/src/adpcm/adpcm.h +++ b/src/adpcm/adpcm.h @@ -20,7 +20,7 @@ //----------------------------------------------------------------------------- // Public functions -int CompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int nCmpType, int ChannelCount); +int CompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int ChannelCount, int nCmpType); int DecompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int ChannelCount); int DecompressADPCM_SC1B(void * pvOutBuffer, int cbOutBuffer, void * pvInBuffer, int cbInBuffer, int ChannelCount); |