diff options
author | Chaosvex <ch@osvex.com> | 2024-03-22 15:12:47 +0000 |
---|---|---|
committer | Chaosvex <ch@osvex.com> | 2024-03-22 15:12:47 +0000 |
commit | fe5d5f416fa3c9f8ef83fa8e36860fdf82dc8f4f (patch) | |
tree | 8b344d7a53f7b51028970939a41c2176741d81cc | |
parent | dbe502676f27ac8510a52ff7b3ab8e03e81179fe (diff) |
Fix CompressADPCM argument order
-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); |