mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-11-17 07:48:27 +01:00
Fixed a bug introduced in d32f3fdf
This commit is contained in:
parent
d6a2fc6e4e
commit
5ee10b7c91
1 changed files with 1 additions and 2 deletions
|
@ -93,8 +93,7 @@ const wstring & Move::getBadCoord() const
|
|||
|
||||
const wstring & Move::getChangedLetters() const
|
||||
{
|
||||
ASSERT(m_type == CHANGE_LETTERS && m_type != PASS,
|
||||
"Incorrect move type");
|
||||
ASSERT(m_type == CHANGE_LETTERS || m_type == PASS, "Incorrect move type");
|
||||
return m_letters;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue