mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
FM-TOWNS AUDIO: fix gcc warnings
This commit is contained in:
parent
2d1fa6c3f8
commit
2ef8e9a202
audio/softsynth/fmtowns_pc98
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user