Commit 934c4899 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msadp32.acm: Remove unused function.

parent 0780575d
......@@ -613,17 +613,6 @@ static LRESULT ADPCM_StreamClose(PACMDRVSTREAMINSTANCE adsi)
}
/***********************************************************************
* ADPCM_round
*
*/
static inline DWORD ADPCM_round(DWORD a, DWORD b, DWORD c)
{
assert(a && b && c);
/* to be sure, always return an entire number of c... */
return ((double)a * (double)b + (double)c - 1) / (double)c;
}
/***********************************************************************
* ADPCM_StreamSize
*
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment