summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2016-02-29 19:00:07 +0000
committer David Haywood <mamehaze@users.noreply.github.com>2016-02-29 19:00:07 +0000
commitb2fc583ed75b19321849fcd4fec518e2b719294b (patch)
tree6761cb21fe51de0cf32f55a9e57ea20c31e7b3d9
parent014ed082311656a966ab16cd6ea7b84292ceb0f4 (diff)
apply fix suggested in MT06145 (nw)
-rw-r--r--src/mame/drivers/astrocde.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/astrocde.cpp b/src/mame/drivers/astrocde.cpp
index e9c745f1ecc..43101fc49ed 100644
--- a/src/mame/drivers/astrocde.cpp
+++ b/src/mame/drivers/astrocde.cpp
@@ -337,7 +337,7 @@ READ8_MEMBER(astrocde_state::gorf_io_2_r)
case 4: output().set_lamp_value(4, data); break;
case 5: output().set_lamp_value(5, data); break;
case 6: /* n/c */ break;
- case 7: osd_printf_debug("io_2:%d\n", data); break;
+ case 7: output().set_lamp_value(7, data); break;
}
return 0xff;
}