2015-02-22 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in 'rdairplay/log_play.cpp' that caused
	the 'Play Tail' button to start from an incorrect position when
	non-zero Start Marker position was set for the cut.
This commit is contained in:
Fred Gleason 2015-02-22 14:46:58 -05:00
parent 61baaf2197
commit 741dc183da
2 changed files with 5 additions and 1 deletions

View File

@ -14776,3 +14776,7 @@
2015-02-21 Fred Gleason <fredg@paravelsystems.com>
* Added support for GPIO to the Software Authority Protocol driver
in 'ripcd/swauthority.cpp' and 'ripcd/swauthority.h'.
2015-02-22 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in 'rdairplay/log_play.cpp' that caused
the 'Play Tail' button to start from an incorrect position when
non-zero Start Marker position was set for the cut.

View File

@ -271,7 +271,7 @@ void LogPlay::auditionTail(int line)
if(start_pos<0) {
start_pos=0;
}
play_audition_player->play(start_pos);
play_audition_player->play(start_pos-logline->startPoint());
}