diff options
author | 2017-03-01 22:27:03 +1100 | |
---|---|---|
committer | 2017-03-01 22:27:03 +1100 | |
commit | e9063720e5fc53dad73d04125545da5954bbd829 (patch) | |
tree | 84e7f48266f9a2bf4c6569044912eb8bf6c6e4bd /docs/release/src/frontend/mame/audit.cpp | |
parent | 493e128506b183a81bc4571ce00f5713b41aea8c (diff) |
0.183 Release filestag183
Diffstat (limited to 'docs/release/src/frontend/mame/audit.cpp')
-rw-r--r-- | docs/release/src/frontend/mame/audit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/release/src/frontend/mame/audit.cpp b/docs/release/src/frontend/mame/audit.cpp index 4e3cc3ecea7..d3f9790a4e0 100644 --- a/docs/release/src/frontend/mame/audit.cpp +++ b/docs/release/src/frontend/mame/audit.cpp @@ -48,7 +48,7 @@ media_auditor::summary media_auditor::audit_media(const char *validation) // temporary hack until romload is update: get the driver path and support it for // all searches -const char *driverpath = m_enumerator.config().root_device().searchpath(); +const char *driverpath = m_enumerator.config()->root_device().searchpath(); std::size_t found = 0; std::size_t required = 0; @@ -56,7 +56,7 @@ const char *driverpath = m_enumerator.config().root_device().searchpath(); std::size_t shared_required = 0; // iterate over devices and regions - for (device_t &device : device_iterator(m_enumerator.config().root_device())) + for (device_t &device : device_iterator(m_enumerator.config()->root_device())) { // determine the search path for this source and iterate through the regions m_searchpath = device.searchpath(); @@ -199,7 +199,7 @@ media_auditor::summary media_auditor::audit_samples() std::size_t found = 0; // iterate over sample entries - for (samples_device &device : samples_device_iterator(m_enumerator.config().root_device())) + for (samples_device &device : samples_device_iterator(m_enumerator.config()->root_device())) { // by default we just search using the driver name std::string searchpath(m_enumerator.driver().name); @@ -507,7 +507,7 @@ device_t *media_auditor::find_shared_device(device_t &device, const char *name, // iterate up the parent chain for (auto drvindex = m_enumerator.find(m_enumerator.driver().parent); drvindex >= 0; drvindex = m_enumerator.find(m_enumerator.driver(drvindex).parent)) { - for (device_t &scandevice : device_iterator(m_enumerator.config(drvindex).root_device())) + for (device_t &scandevice : device_iterator(m_enumerator.config(drvindex)->root_device())) { for (const rom_entry *region = rom_first_region(scandevice); region; region = rom_next_region(region)) { |