2021-03-21 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'RDMarkerView' that caused PlayTo operations to
	fail if the target marker was within 2 seconds of the start of the
	cut.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-03-21 17:23:22 -04:00
parent c882f1bd71
commit e9a1b06a31
2 changed files with 5 additions and 1 deletions

View File

@ -21320,3 +21320,7 @@
2021-03-21 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'RDMarkerView' that caused a save prompt to
appear when no data had been changed.
2021-03-21 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'RDMarkerView' that caused PlayTo operations to
fail if the target marker was within 2 seconds of the start of the
cut.

View File

@ -273,7 +273,7 @@ void RDMarkerPlayer::buttonPlayToData()
d_loop_start_length=2000;
if(d_loop_start_msec<0) {
d_loop_start_msec=0;
d_loop_start_length=d_selected_markers[1];
d_loop_start_length=d_pointers[d_selected_markers[1]];
}
rda->cae()->positionPlay(d_cae_handle,d_loop_start_msec);
rda->cae()->play(d_cae_handle,d_loop_start_length,100000,false);