This commit is contained in:
Glenn Maynard
2004-01-19 20:48:22 +00:00
parent 91e633d880
commit 1f90b4bc2e
2 changed files with 1 additions and 4 deletions
@@ -33,7 +33,6 @@ class RageSound_DSound: public RageSoundDriver
stream() { pcm = NULL; snd = NULL; state=INACTIVE; }
~stream();
};
friend struct stream;
/* Pool of available streams. */
vector<stream *> stream_pool;
@@ -14,10 +14,8 @@ class RageSound_DSound_Software: public RageSoundDriver
struct sound {
RageSoundBase *snd;
RageTimer start_time;
bool stopping;
int flush_pos; /* state == STOPPING only */
int flush_pos; /* when stopping only */
sound() { snd = NULL; stopping=false; }
};