fix some compiler warnings

This commit is contained in:
Volker Fischer 2010-02-18 21:06:22 +00:00
parent 3d6b4772f1
commit e61ebff406

View File

@ -67,8 +67,8 @@ protected:
// these functions should be overwritten by derived class for
// non callback based audio interfaces
virtual bool Read ( CVector<int16_t>& psData ) { printf ( "no sound!" ); return false; }
virtual bool Write ( CVector<int16_t>& psData ) { printf ( "no sound!" ); return false; }
virtual bool Read ( CVector<int16_t>& ) { printf ( "no sound!" ); return false; }
virtual bool Write ( CVector<int16_t>& ) { printf ( "no sound!" ); return false; }
void run();
bool bRun;