From c5c6b43d0319ef4c06b4a82e407c199511704823 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 23 May 2012 10:56:14 +0000 Subject: [PATCH] make fix slots not available by command line (nw) --- src/emu/emuopts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/emuopts.c b/src/emu/emuopts.c index 72baf54a2f0..1a339b0fc5c 100644 --- a/src/emu/emuopts.c +++ b/src/emu/emuopts.c @@ -233,6 +233,7 @@ bool emu_options::add_slot_options(bool isfirst) slot_interface_iterator iter(config.root_device()); for (const device_slot_interface *slot = iter.first(); slot != NULL; slot = iter.next()) { + if (slot->fixed()) continue; // first device? add the header as to be pretty if (first && isfirst) {