simplest change possible to fix display of codes starting with 'not' - e.g. this fixes 'not A S' being displayed as 'A S'

This commit is contained in:
Vas Crabb 2019-11-20 03:43:57 +11:00
parent 228540e279
commit 593b3d9fe1

View File

@ -1483,7 +1483,7 @@ input_seq input_manager::seq_clean(const input_seq &seq) const
clean_index--;
}
}
else if (clean_index > 0 || !code.internal())
else if (clean_index > 0 || !code.internal() || code == input_seq::not_code)
{
clean_codes += code;
clean_index++;