summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/hh_ucom4.c
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2015-03-15 15:40:51 +0100
committer hap <happppp@users.noreply.github.com>2015-03-15 15:40:51 +0100
commitabae5d34e6104efd31f987afb1712f836a17f44d (patch)
tree4d3e83f6325d952ddead70b5d11c28fccfa2d040 /src/mess/drivers/hh_ucom4.c
parentaf7b120d8239d1d165d3bba64ed939965088ba5f (diff)
(MESS)New working game added
----------------- TI Little Professor (1978 version) [hap, Sean Riddle]
Diffstat (limited to 'src/mess/drivers/hh_ucom4.c')
-rw-r--r--src/mess/drivers/hh_ucom4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/hh_ucom4.c b/src/mess/drivers/hh_ucom4.c
index e65d59b37b2..355a4b6d995 100644
--- a/src/mess/drivers/hh_ucom4.c
+++ b/src/mess/drivers/hh_ucom4.c
@@ -192,7 +192,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(hh_ucom4_state::display_decay_tick)
// slowly turn off unpowered segments
for (int y = 0; y < m_display_maxy; y++)
for (int x = 0; x < m_display_maxx; x++)
- if (!(m_display_state[y] >> x & 1) && m_display_decay[y][x] != 0)
+ if (m_display_decay[y][x] != 0)
m_display_decay[y][x]--;
display_update();