remove some junk added in last few commits. Also I really don't like the style recently...and removing PCH? wtf???

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2777 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-03-28 16:23:06 +00:00
parent 632e3bfc85
commit 3a5fb88b5e
2 changed files with 13 additions and 10 deletions

View File

@ -31,6 +31,7 @@
class DSound : public SoundStream
{
#ifdef _WIN32
Common::Thread *thread;
Common::CriticalSection soundCriticalSection;
Common::Event soundSyncEvent;
@ -60,10 +61,13 @@ class DSound : public SoundStream
DWORD dwSoundBytes);
public:
DSound(CMixer *mixer, void *hWnd = NULL) : SoundStream(mixer),
bufferSize(0),
totalRenderedBytes(0),
currentPos(0),lastPos(0) {}
DSound(CMixer *mixer, void *hWnd = NULL)
: SoundStream(mixer)
, bufferSize(0)
, totalRenderedBytes(0)
, currentPos(0)
, lastPos(0)
{}
virtual ~DSound() {}
@ -73,6 +77,11 @@ public:
static bool isValid() { return true; }
virtual bool usesMixer() const { return true; }
virtual void Update();
#else
DSound(CMixer *mixer)
: SoundStream(mixer) {}
#endif
};
#endif //_DSOUNDSTREAM_H_