mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 21:43:13 +02:00
the test-audio button causes a local audio-loopback rather than a server one
This commit is contained in:
parent
1d5f9cc0ec
commit
7d21222232
1 changed files with 2 additions and 2 deletions
|
@ -21,13 +21,13 @@ RowLayout {
|
||||||
function startAudioLoopback() {
|
function startAudioLoopback() {
|
||||||
if (!audioLoopedBack) {
|
if (!audioLoopedBack) {
|
||||||
audioLoopedBack = true;
|
audioLoopedBack = true;
|
||||||
AudioScriptingInterface.setServerEcho(true);
|
AudioScriptingInterface.setLocalEcho(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function stopAudioLoopback() {
|
function stopAudioLoopback() {
|
||||||
if (audioLoopedBack) {
|
if (audioLoopedBack) {
|
||||||
audioLoopedBack = false;
|
audioLoopedBack = false;
|
||||||
AudioScriptingInterface.setServerEcho(false);
|
AudioScriptingInterface.setLocalEcho(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue