From d8ef34be9a20cd28a11aef627c533554f49346b8 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 8 Dec 2019 04:00:49 +1100 Subject: softlist_dev.cpp: get some stuff out of the global namespace (nw) --- src/devices/bus/bbc/tube/tube_zep100.cpp | 2 +- src/devices/bus/econet/e01.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices') diff --git a/src/devices/bus/bbc/tube/tube_zep100.cpp b/src/devices/bus/bbc/tube/tube_zep100.cpp index f11f0af6415..87e6f2b2d88 100644 --- a/src/devices/bus/bbc/tube/tube_zep100.cpp +++ b/src/devices/bus/bbc/tube/tube_zep100.cpp @@ -86,7 +86,7 @@ void bbc_tube_zep100_device::device_add_mconfig(machine_config &config) RAM(config, m_ram).set_default_size("64K").set_default_value(0x00); /* software lists */ - SOFTWARE_LIST(config, "flop_ls_torch").set_type("bbc_flop_torch", SOFTWARE_LIST_ORIGINAL_SYSTEM).set_filter("Z80"); + SOFTWARE_LIST(config, "flop_ls_torch").set_original("bbc_flop_torch").set_filter("Z80"); } //------------------------------------------------- diff --git a/src/devices/bus/econet/e01.cpp b/src/devices/bus/econet/e01.cpp index 203090badc3..493791384f1 100644 --- a/src/devices/bus/econet/e01.cpp +++ b/src/devices/bus/econet/e01.cpp @@ -269,7 +269,7 @@ void econet_e01_device::device_add_mconfig(machine_config &config) } software_list_device &softlist(SOFTWARE_LIST(config, "flop_ls_e01")); - softlist.set_type("e01_flop", SOFTWARE_LIST_ORIGINAL_SYSTEM); + softlist.set_original("e01_flop"); CENTRONICS(config, m_centronics, centronics_devices, "printer"); m_centronics->ack_handler().set(R6522_TAG, FUNC(via6522_device::write_ca1)); -- cgit v1.2.3