aboutsummaryrefslogtreecommitdiff
path: root/src/adpcm/adpcm.h
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2024-03-23 06:39:29 +0100
committerGitHub <noreply@github.com>2024-03-23 06:39:29 +0100
commitd589102f9af750c4afc7a46a5821e18fdc999a34 (patch)
tree8b344d7a53f7b51028970939a41c2176741d81cc /src/adpcm/adpcm.h
parentdbe502676f27ac8510a52ff7b3ab8e03e81179fe (diff)
parentfe5d5f416fa3c9f8ef83fa8e36860fdf82dc8f4f (diff)
Merge pull request #322 from Chaosvex/arg_fix
Thanks for the fix :-)
Diffstat (limited to 'src/adpcm/adpcm.h')
-rw-r--r--src/adpcm/adpcm.h2
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);