VRFS-648. Use Peter's new resync function instead of FTUESave.

This commit is contained in:
Jonathon Wilson 2013-09-15 19:55:12 -06:00
parent 00bb84e7b7
commit 1d36dcb88f
2 changed files with 7 additions and 1 deletions

View File

@ -189,6 +189,11 @@
// Session Functions
function SessionAddTrack() {}
function SessionAudioResync() {
logger.debug("Fake JamClient: SessionAudioResync()");
}
function SessionGetControlState(mixerIds) {
dbg("SessionGetControlState");
var groups = [0, 1, 2, 3, 7, 9];
@ -553,6 +558,7 @@
this.SessionGetMasterLocalMix = SessionGetMasterLocalMix;
this.SessionSetMasterLocalMix = SessionSetMasterLocalMix;
this.SessionGetDeviceLatency = SessionGetDeviceLatency;
this.SessionAudioResync = SessionAudioResync;
// Track
this.TrackGetChannels = TrackGetChannels;

View File

@ -781,7 +781,7 @@
function sessionResync(evt) {
evt.preventDefault();
var response = context.jamClient.FTUESave(true);
var response = context.jamClient.SessionAudioResync();
if (response) {
app.notify({
"title": "Error",