Module: wine Branch: master Commit: 6a9d6ef275f5e6053f26f0ad232f16f4e25db77f URL: http://source.winehq.org/git/wine.git/?a=commit;h=6a9d6ef275f5e6053f26f0ad23...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Jan 8 20:31:00 2007 +0000
dsound: Remove unused function.
---
dlls/dsound/sound3d.c | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/dlls/dsound/sound3d.c b/dlls/dsound/sound3d.c index 2560655..6f16686 100644 --- a/dlls/dsound/sound3d.c +++ b/dlls/dsound/sound3d.c @@ -105,15 +105,6 @@ static inline D3DVALUE RadToDeg (D3DVALU 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) {