aboutsummaryrefslogtreecommitdiff
path: root/src/adpcm/adpcm.h
diff options
context:
space:
mode:
authorChaosvex <ch@osvex.com>2024-03-22 15:12:47 +0000
committerChaosvex <ch@osvex.com>2024-03-22 15:12:47 +0000
commitfe5d5f416fa3c9f8ef83fa8e36860fdf82dc8f4f (patch)
tree8b344d7a53f7b51028970939a41c2176741d81cc /src/adpcm/adpcm.h
parentdbe502676f27ac8510a52ff7b3ab8e03e81179fe (diff)
Fix CompressADPCM argument order
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);