diff options
author | 2015-03-15 15:40:51 +0100 | |
---|---|---|
committer | 2015-03-15 15:40:51 +0100 | |
commit | abae5d34e6104efd31f987afb1712f836a17f44d (patch) | |
tree | 4d3e83f6325d952ddead70b5d11c28fccfa2d040 /src/mess/drivers/hh_hmcs40.c | |
parent | af7b120d8239d1d165d3bba64ed939965088ba5f (diff) |
(MESS)New working game added
-----------------
TI Little Professor (1978 version) [hap, Sean Riddle]
Diffstat (limited to 'src/mess/drivers/hh_hmcs40.c')
-rw-r--r-- | src/mess/drivers/hh_hmcs40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/hh_hmcs40.c b/src/mess/drivers/hh_hmcs40.c index c44727af7e0..d7b648c9408 100644 --- a/src/mess/drivers/hh_hmcs40.c +++ b/src/mess/drivers/hh_hmcs40.c @@ -176,7 +176,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(hh_hmcs40_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(); |