NO-OP: comment formatting

Use asterisks to separate indent (tabs) and alignment (spaces)
in comments. Also remove trailing whitespace.
This commit is contained in:
Robin Gareus 2020-08-01 00:17:23 +02:00
parent 13f041536d
commit 41c503768b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -225,12 +225,12 @@ Session::locate (samplepos_t target_sample, bool with_roll, bool with_flush, boo
bool transport_was_stopped = !_transport_fsm->rolling();
/* Prevent rolling in the case of calling Session::goto_start while
SessionConfiguration::get_auto_play == false.
Because _transport_fsm->motion_state == WaitingForLocate after
calling goto_start, we have to check for _transport_fsm->locating()
and with_roll here.
*/
* SessionConfiguration::get_auto_play == false.
*
* Because _transport_fsm->motion_state == WaitingForLocate after
* calling goto_start, we have to check for _transport_fsm->locating()
* and with_roll here.
*/
if (!with_roll && _transport_fsm->locating()) {
transport_was_stopped = false;