mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Increase delay of checking a recording loaded to reduce false positives
This commit is contained in:
parent
c5f384d8fb
commit
06f56f024b
1 changed files with 2 additions and 3 deletions
|
@ -33,9 +33,8 @@
|
|||
}
|
||||
|
||||
function error(message, info) {
|
||||
print(APP_NAME + ": " + message + (info !== "" ? " - " + info : ""));
|
||||
print(APP_NAME + ": " + message + (info !== undefined ? " - " + info : ""));
|
||||
Window.alert(message);
|
||||
|
||||
}
|
||||
|
||||
RecordingIndicator = (function () {
|
||||
|
@ -309,7 +308,7 @@
|
|||
|
||||
function playRecording(recording, position, orientation) {
|
||||
var index,
|
||||
CHECK_PLAYING_TIMEOUT = 5000;
|
||||
CHECK_PLAYING_TIMEOUT = 10000;
|
||||
|
||||
// Optional function parameters.
|
||||
if (position === undefined) {
|
||||
|
|
Loading…
Reference in a new issue