summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/apple2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/apple2.c')
-rw-r--r--src/mess/machine/apple2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/machine/apple2.c b/src/mess/machine/apple2.c
index ae3b6d5c30d..0825a1dfc4a 100644
--- a/src/mess/machine/apple2.c
+++ b/src/mess/machine/apple2.c
@@ -543,9 +543,8 @@ READ8_MEMBER(apple2_state::apple2_c4xx_r )
// is a card installed in this slot?
if (slotdevice != NULL)
{
- if (slotdevice->take_c800())
+ if (slotdevice->take_c800() && (m_a2_cnxx_slot != slotnum))
{
-// printf("c4xx_r: taking cnxx_slot to %d\n", slotnum);
m_a2_cnxx_slot = slotnum;
apple2_update_memory(space.machine());
}