summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-08-27 21:31:39 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2021-08-27 21:31:39 +1000
commitc52372564fd6571b7bc3efabba355544ed67cd92 (patch)
tree2fc8b0c7d57a599054eb7a44a465c9885f5930f2
parent77460dd3b946e138d0fb59fd55189e510cb09338 (diff)
gts1: removed unused line of code.
-rw-r--r--src/mame/drivers/gts1.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mame/drivers/gts1.cpp b/src/mame/drivers/gts1.cpp
index 3e1b0b48c18..c59b5f570a0 100644
--- a/src/mame/drivers/gts1.cpp
+++ b/src/mame/drivers/gts1.cpp
@@ -533,8 +533,6 @@ void gts1_state::gts1_display_w(offs_t offset, u8 data) // WORKS
* segments b and c to display the 7-seg "1". */
if (a & _h)
a = _b | _c;
- if (b & _h)
- b = _b | _c;
m_digit7[offset] = a;
}