FM-TOWNS AUDIO: fix gcc warnings

This commit is contained in:
athrxx 2011-05-20 16:21:39 +02:00
parent 2d1fa6c3f8
commit 2ef8e9a202
3 changed files with 8 additions and 8 deletions

@ -1890,9 +1890,9 @@ void TownsAudioInterface::setSoundEffectChanMask(int mask) {
}
void TownsAudioInterface::lockInternal() {
_intf->lock();
_intf->mutexLock();
}
void TownsAudioInterface::unlockInternal() {
_intf->unlock();
_intf->mutexUnlock();
}

@ -1147,7 +1147,7 @@ int TownsPC98_FmSynth::readBuffer(int16 *buffer, const int numSamples) {
bool locked = false;
if (_ready) {
lock();
mutexLock();
locked = true;
}
@ -1201,7 +1201,7 @@ int TownsPC98_FmSynth::readBuffer(int16 *buffer, const int numSamples) {
}
if (locked)
unlock();
mutexUnlock();
delete[] tmpStart;
@ -1220,11 +1220,11 @@ int TownsPC98_FmSynth::getRate() const {
return _mixer->getOutputRate();
}
void TownsPC98_FmSynth::lock() {
void TownsPC98_FmSynth::mutexLock() {
_mutex.lock();
}
void TownsPC98_FmSynth::unlock() {
void TownsPC98_FmSynth::mutexUnlock() {
_mutex.unlock();
}

@ -73,8 +73,8 @@ public:
bool endOfData() const;
int getRate() const;
void lock();
void unlock();
void mutexLock();
void mutexUnlock();
protected:
void deinit();