summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/ticalc1x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ticalc1x.cpp')
-rw-r--r--src/mame/drivers/ticalc1x.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ticalc1x.cpp b/src/mame/drivers/ticalc1x.cpp
index 74d97ffeffb..c8bbdfd0171 100644
--- a/src/mame/drivers/ticalc1x.cpp
+++ b/src/mame/drivers/ticalc1x.cpp
@@ -716,7 +716,7 @@ WRITE16_MEMBER(lilprof78_state::write_r)
UINT16 r = (data & 7) | (data << 1 & 0x1f0);
set_display_segmask(0x1ff, 0x7f);
display_matrix(7, 9, seg, r, false);
-
+
// 3rd digit A/G(equals sign) is from O7
m_display_state[3] = (r != 0 && m_o & 0x80) ? 0x41 : 0;