summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/poly.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/poly.c')
-rw-r--r--src/mess/drivers/poly.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/poly.c b/src/mess/drivers/poly.c
index 442416a1fbc..6574da9264b 100644
--- a/src/mess/drivers/poly.c
+++ b/src/mess/drivers/poly.c
@@ -161,9 +161,9 @@ WRITE8_MEMBER( poly_state::kbd_put )
{
m_term_data = data;
//m_term_key = 1;
- address_space *mem = m_maincpu->space(AS_PROGRAM);
- mem->write_byte(0xebec, data); // this has to be 0xecf1 for bios 1
- mem->write_byte(0xebd0, 1); // any non-zero here
+ address_space &mem = m_maincpu->space(AS_PROGRAM);
+ mem.write_byte(0xebec, data); // this has to be 0xecf1 for bios 1
+ mem.write_byte(0xebd0, 1); // any non-zero here
}
static ASCII_KEYBOARD_INTERFACE( keyboard_intf )