diff options
Diffstat (limited to 'src/emu/validity.cpp')
-rw-r--r-- | src/emu/validity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/validity.cpp b/src/emu/validity.cpp index 8e8519ecffa..2c87ec0081a 100644 --- a/src/emu/validity.cpp +++ b/src/emu/validity.cpp @@ -1611,7 +1611,7 @@ void validity_checker::validate_roms(device_t &root) } // for any non-region ending entries, make sure they don't extend past the end - if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) + if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0 && !ROMENTRY_ISIGNORE(romp)) // HBMAME { items_since_region++; if (!ROMENTRY_ISIGNORE(romp) && (ROM_GETOFFSET(romp) + ROM_GETLENGTH(romp) > current_length)) |