mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
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:
parent
228540e279
commit
593b3d9fe1
@ -1483,7 +1483,7 @@ input_seq input_manager::seq_clean(const input_seq &seq) const
|
|||||||
clean_index--;
|
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_codes += code;
|
||||||
clean_index++;
|
clean_index++;
|
||||||
|
Loading…
Reference in New Issue
Block a user