summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/asteroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/asteroid.cpp')
-rw-r--r--src/mame/machine/asteroid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/asteroid.cpp b/src/mame/machine/asteroid.cpp
index c22dd37822c..1c763aeacd2 100644
--- a/src/mame/machine/asteroid.cpp
+++ b/src/mame/machine/asteroid.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Brad Oliver, Bernd Wiebelt, Allard van der Bas
/***************************************************************************
- machine.c
+ machine/asteroid.cpp
Functions to emulate general aspects of the machine (RAM, ROM, interrupts,
I/O ports)
@@ -106,7 +106,7 @@ READ8_MEMBER(asteroid_state::asteroid_DSW1_r)
m_dsw_sel->i0a_w(BIT(val, 6));
m_dsw_sel->i0b_w(BIT(val, 7));
- m_dsw_sel->s_w(space, 0, offset & 0x03);
+ m_dsw_sel->s_w(offset & 0x03);
return 0xfc | (m_dsw_sel->zb_r() << 1) | m_dsw_sel->za_r();
}