machine/roc10937: fix CID: 138793 "Logically dead code"

This commit is contained in:
Sergey Svishchev 2017-03-10 15:52:01 +03:00
parent 5b9e65a179
commit d714b46924

View File

@ -361,8 +361,8 @@ void roc10957_t::write_char(int data)
}
}
else
{ // Display data
data &= 0x3F;
{ // Display data. Bit 6 is a "don't care" bit except for PNT and TAIL.
data &= 0x7F;
switch ( data )
{