diff options
author | 2011-11-09 13:03:49 +0000 | |
---|---|---|
committer | 2011-11-09 13:03:49 +0000 | |
commit | c9fb7c59f84588a0c1b158747f20b7c4298ac74c (patch) | |
tree | 96c5b667a35d77f14532262a9a30373eea5da07e /src | |
parent | e0f276b74bfeb2804d476fc3e8b254990a1ccaa3 (diff) |
Made get_card_device work before start of devices (no whatsnew)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/dislot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/dislot.c b/src/emu/dislot.c index 175ea8eaedb..5295b260cb9 100644 --- a/src/emu/dislot.c +++ b/src/emu/dislot.c @@ -30,7 +30,7 @@ void device_slot_interface::static_set_slot_info(device_t &device, const slot_in device_t* device_slot_interface::get_card_device() { - const char *subtag = device().machine().options().value(device().tag()); + const char *subtag = device().mconfig().options().value(device().tag()); device_t *dev = NULL; if (subtag) { device_slot_card_interface *intf = NULL; |