summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/xerox820.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-23 07:11:57 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-23 07:11:57 +0000
commit6de13d280a0c56b354e34a2616fcbe88c7178c86 (patch)
tree82311c7309378b65b2ab099d7587da77b8b7390c /src/mess/includes/xerox820.h
parentfdaf96470fe12218a2f39e3b776bed51cb8bbf70 (diff)
made BEEP and RAM devices initialize in constructor of driver classes (nw)
Diffstat (limited to 'src/mess/includes/xerox820.h')
-rw-r--r--src/mess/includes/xerox820.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/includes/xerox820.h b/src/mess/includes/xerox820.h
index 69e1df6dd5e..71437971e11 100644
--- a/src/mess/includes/xerox820.h
+++ b/src/mess/includes/xerox820.h
@@ -114,7 +114,7 @@ class bigboard_state : public xerox820_state
public:
bigboard_state(const machine_config &mconfig, device_type type, const char *tag)
: xerox820_state(mconfig, type, tag),
- m_beeper(*this, BEEPER_TAG)
+ m_beeper(*this, "beeper")
{ }
required_device<beep_device> m_beeper;