fix compiler warnings
This commit is contained in:
parent
09f9b3bb3c
commit
3d6b4772f1
1 changed files with 4 additions and 4 deletions
|
@ -87,14 +87,14 @@ public:
|
||||||
|
|
||||||
// not used
|
// not used
|
||||||
int GetNumDev() { return 1; }
|
int GetNumDev() { return 1; }
|
||||||
QString GetDeviceName ( const int iDiD ) { return "wave mapper"; }
|
QString GetDeviceName ( const int ) { return "wave mapper"; }
|
||||||
QString SetDev ( const int iNewDev ) { return ""; } // dummy
|
QString SetDev ( const int ) { return ""; } // dummy
|
||||||
int GetDev() { return 0; }
|
int GetDev() { return 0; }
|
||||||
|
|
||||||
// dummy definitions
|
// dummy definitions
|
||||||
virtual int Init ( const int iNewPrefMonoBufferSize ) { CSoundBase::Init ( iNewPrefMonoBufferSize ); }
|
virtual int Init ( const int iNewPrefMonoBufferSize ) { CSoundBase::Init ( iNewPrefMonoBufferSize ); }
|
||||||
virtual bool Read ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
virtual bool Read ( CVector<short>& ) { printf ( "no sound!" ); return false; }
|
||||||
virtual bool Write ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
virtual bool Write ( CVector<short>& ) { printf ( "no sound!" ); return false; }
|
||||||
};
|
};
|
||||||
#endif // WITH_SOUND
|
#endif // WITH_SOUND
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue