dsound: Remove unused function.

This commit is contained in:
Andrew Talbot 2007-01-08 20:31:00 +00:00 committed by Alexandre Julliard
parent 10334ed041
commit 6a9d6ef275
1 changed files with 0 additions and 9 deletions

View File

@ -105,15 +105,6 @@ static inline D3DVALUE RadToDeg (D3DVALUE angle)
return newangle;
}
/* conversion between degrees and radians */
static inline D3DVALUE DegToRad (D3DVALUE angle)
{
D3DVALUE newangle;
newangle = angle * (2*M_PI/360);
TRACE("%f deg = %f rad\n", angle, newangle);
return newangle;
}
/* angle between vectors - deg version */
static inline D3DVALUE AngleBetweenVectorsDeg (LPD3DVECTOR a, LPD3DVECTOR b)
{