mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 18:13:54 +02:00
semicolons;
This commit is contained in:
parent
01855c0d9c
commit
55fe2f9dc0
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@
|
|||
for (var i = 0; i < total; i++) {
|
||||
sum += a[i];
|
||||
}
|
||||
return Math.round(sum / total)
|
||||
return Math.round(sum / total);
|
||||
}
|
||||
|
||||
function audioClamp(input) {
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
for (var i = 0; i < total; i++) {
|
||||
sum += a[i];
|
||||
}
|
||||
return Math.round(sum / total)
|
||||
return Math.round(sum / total);
|
||||
}
|
||||
|
||||
function audioClamp(input) {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
} else {
|
||||
barID = childOne.id;
|
||||
textID = childZero.id;
|
||||
originalText = childZero.text
|
||||
originalText = childZero.text;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue