From d6a860dfd7aa145e2401a6284e07c2f2a8549e3c Mon Sep 17 00:00:00 2001 From: Robbbert Date: Wed, 14 Oct 2020 04:46:55 +1100 Subject: [PATCH] mbee: keyboard is better; still some issues being worked on. --- src/mame/video/mbee.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mame/video/mbee.cpp b/src/mame/video/mbee.cpp index 3973f77b2b9..9d429184df6 100644 --- a/src/mame/video/mbee.cpp +++ b/src/mame/video/mbee.cpp @@ -102,8 +102,7 @@ void mbee_state::video_high_w(offs_t offset, u8 data) void mbee_state::port0b_w(u8 data) { - if (BIT(m_features, 0)) - m_0b = data & 1; + m_0b = BIT(data, 0); } u8 mbee_state::port08_r()