diff options
author | 2020-04-16 01:32:02 +1000 | |
---|---|---|
committer | 2020-04-16 01:32:02 +1000 | |
commit | 164cdb631aa0bf22351cdfd40b30af3094fa8f79 (patch) | |
tree | f04a963f2c57de326fc01d06c832fc1d9cfe9b13 | |
parent | 3875349092fcb7378ca76e0b979b226e8ef5c307 (diff) |
(nw) fixed the build (variable set but not used)
-rw-r--r-- | src/emu/softlist_dev.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/softlist_dev.cpp b/src/emu/softlist_dev.cpp index f3c584d1c4a..c175234f7a5 100644 --- a/src/emu/softlist_dev.cpp +++ b/src/emu/softlist_dev.cpp @@ -518,7 +518,7 @@ void software_list_device::internal_validity_check(validity_checker &valid) if (!part.romdata().empty()) { std::map<std::string, u32> data_area_map; - char const *last_region_name = "???"; + //char const *last_region_name = "???"; char const *last_name = "???"; u32 current_length = 0; int items_since_region = 1; @@ -528,7 +528,7 @@ void software_list_device::internal_validity_check(validity_checker &valid) { // reset our region tracking states items_since_region = (ROMREGION_ISERASE(romp) || ROMREGION_ISDISKDATA(romp)) ? 1 : 0; - last_region_name = romp->name().c_str(); + //last_region_name = romp->name().c_str(); // check for a valid tag if (romp->name().size() < MIN_TAG_LENGTH) |