mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
ctvboy: don't invert hs signal
This commit is contained in:
parent
7dea89d80d
commit
f1201ba6eb
@ -149,7 +149,7 @@ void ctvboy_state::p1_w(u8 data)
|
||||
u8 ctvboy_state::p1_r()
|
||||
{
|
||||
// P17: MC6847 HS
|
||||
return m_mc6847->hs_r() ? 0 : 0x80;
|
||||
return m_mc6847->hs_r() ? 0x80 : 0;
|
||||
}
|
||||
|
||||
u8 ctvboy_state::p2_r()
|
||||
|
Loading…
Reference in New Issue
Block a user