mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-02-07 08:48:26 +01:00
Really fixed detection of the first turn (commit 43954a9
was wrong)
This commit is contained in:
parent
6ac6849bf8
commit
f1c8bd587b
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ bool Navigation::isFirstTurn() const
|
||||||
{
|
{
|
||||||
return m_currTurn == 0 &&
|
return m_currTurn == 0 &&
|
||||||
m_turnCommands[m_currTurn]->isPartiallyExecuted() &&
|
m_turnCommands[m_currTurn]->isPartiallyExecuted() &&
|
||||||
(m_turnCommands.size() == 1 ||
|
(!m_turnCommands[m_currTurn]->hasNonAutoExecCmd() ||
|
||||||
!m_turnCommands[m_currTurn]->isFullyExecuted());
|
!m_turnCommands[m_currTurn]->isFullyExecuted());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue