13
0

fix logic error in transport FSM (compare with adjacent conditionals)

This commit is contained in:
Paul Davis 2021-04-19 15:33:30 -06:00
parent 48e5607f7c
commit 0bc5f88a65

View File

@ -369,7 +369,7 @@ TransportFSM::process_event (Event& ev, bool already_deferred, bool& deferred)
transition (Backwards);
}
if (should_roll_after_locate()) {
if (should_not_roll_after_locate()) {
transition (Stopped);
} else {
transition (Rolling);