summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/softlist_dev.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-04-16 14:09:48 +1000
committer Vas Crabb <vas@vastheman.com>2020-04-16 14:09:48 +1000
commit5606de08a7c08e968640cb67c19342e4711ddcb1 (patch)
treefaa8981f3fe4332460d263186121263c9785f245 /src/emu/softlist_dev.cpp
parent1a5c013c330fd1a6b3d21d9bbbaf512539ae4503 (diff)
vboy.xml: restore explicit 8-bit width on the SRAM regions - it's to indicate that the SRAM is not full bus width (nw)
Diffstat (limited to 'src/emu/softlist_dev.cpp')
-rw-r--r--src/emu/softlist_dev.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/softlist_dev.cpp b/src/emu/softlist_dev.cpp
index b264a3c4069..0a8f996525a 100644
--- a/src/emu/softlist_dev.cpp
+++ b/src/emu/softlist_dev.cpp
@@ -519,7 +519,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;
@@ -533,7 +533,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)