From e6679b4acd5cfa758268fb188fa0e1a7754cf93a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 11 Mar 2005 00:12:10 +0000 Subject: [PATCH] cleanup --- stepmania/src/arch/Sound/RageSoundDriver_DSound.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_DSound.h b/stepmania/src/arch/Sound/RageSoundDriver_DSound.h index 8e786e283f..b20ec59170 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_DSound.h +++ b/stepmania/src/arch/Sound/RageSoundDriver_DSound.h @@ -11,6 +11,12 @@ struct IDirectSoundBuffer; class RageSound_DSound: public RageSoundDriver { +public: + RageSound_DSound(); + ~RageSound_DSound(); + CString Init(); + +private: /* The only place that takes sounds out of INACTIVE is StartMixing; this mutex * serializes inactive sounds. */ RageMutex m_InactiveSoundMutex; @@ -59,11 +65,6 @@ class RageSound_DSound: public RageSoundDriver void Update(float delta); int GetSampleRate( int rate ) const { return rate; } - -public: - RageSound_DSound(); - ~RageSound_DSound(); - CString Init(); }; #endif