fix some compiler warnings
This commit is contained in:
parent
3d6b4772f1
commit
e61ebff406
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue