summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-10-19 15:32:36 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-10-19 15:32:36 -0400
commitb2a2942e3f4fd46b99a40d0ecf487346b030e961 (patch)
tree6358d7e6125dbb304064bd50f07ec9d883149ad0
parent0e3cb4556718cd5fabc422b9bcde527866218ab8 (diff)
savia84.cpp: Fix output array
-rw-r--r--src/mame/drivers/savia84.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/savia84.cpp b/src/mame/drivers/savia84.cpp
index e8668858fe0..01ddfdfcf75 100644
--- a/src/mame/drivers/savia84.cpp
+++ b/src/mame/drivers/savia84.cpp
@@ -66,7 +66,7 @@ private:
required_device<i8255_device> m_ppi8255;
required_device<pwm_display_device> m_display;
required_ioport_array<9> m_io_keyboard;
- output_finder<3> m_leds;
+ output_finder<8> m_leds;
};
void savia84_state::mem_map(address_map &map)