Fix other audio backends
This commit is contained in:
parent
7abab0039b
commit
987b81c946
2 changed files with 13 additions and 0 deletions
|
@ -69,3 +69,8 @@ void AudioBackend_SetOrganyaTimer(unsigned int milliseconds)
|
||||||
{
|
{
|
||||||
(void)milliseconds;
|
(void)milliseconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AudioBackend_SleepOrganya(unsigned int milliseconds)
|
||||||
|
{
|
||||||
|
(void)milliseconds;
|
||||||
|
}
|
||||||
|
|
|
@ -420,3 +420,11 @@ void AudioBackend_SetOrganyaTimer(unsigned int milliseconds)
|
||||||
|
|
||||||
OSUnlockMutex(&organya_mutex);
|
OSUnlockMutex(&organya_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AudioBackend_SleepOrganya(unsigned int milliseconds)
|
||||||
|
{
|
||||||
|
(void)milliseconds;
|
||||||
|
|
||||||
|
// TODO - Figure out how to do this.
|
||||||
|
// Honestly, I might not bother - this backend has never worked properly.
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue