| Previous | 199869 Revisions | Next |
| r21062 Thursday 14th February, 2013 at 12:40:56 UTC by Fabio Priuli |
|---|
| emuopts.c: avoid slots without user configurable options to write their configs at exit. [Fabio Priuli] |
| [src/emu] | emuopts.c |
| r21061 | r21062 | |
|---|---|---|
| 235 | 235 | slot_interface_iterator iter(config.root_device()); |
| 236 | 236 | for (const device_slot_interface *slot = iter.first(); slot != NULL; slot = iter.next()) |
| 237 | 237 | { |
| 238 | if (slot->fixed()) continue; | |
| 238 | if (slot->fixed() || slot->all_internal()) continue; | |
| 239 | 239 | // first device? add the header as to be pretty |
| 240 | 240 | if (first && isfirst) |
| 241 | 241 | { |
| Previous | 199869 Revisions | Next |