diff options
author | 2018-03-15 19:02:43 +1100 | |
---|---|---|
committer | 2018-03-15 19:02:43 +1100 | |
commit | 0bf88bda8f80a824a935c2b7adb7b72e54f9938a (patch) | |
tree | 0f0c3aa3e01c4c809cba091133f1fd18ae85bf40 /src/emu/validity.cpp | |
parent | 25652d645587c96a906a6f0b809c0c80a995aab5 (diff) |
Cycle-accurate DSP16 core (disabled in QSound for performance reasons)
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 bf94da8cdce..9a3e9978053 100644 --- a/src/emu/validity.cpp +++ b/src/emu/validity.cpp @@ -1598,7 +1598,7 @@ void validity_checker::validate_roms(device_t &root) if (!ROMENTRY_ISREGIONEND(romp) && current_length > 0) { items_since_region++; - if (ROM_GETOFFSET(romp) + ROM_GETLENGTH(romp) > current_length) + if (!ROMENTRY_ISIGNORE(romp) && (ROM_GETOFFSET(romp) + ROM_GETLENGTH(romp) > current_length)) osd_printf_error("ROM '%s' extends past the defined memory region\n", last_name); } } |