diff options
author | 2010-02-11 13:54:55 +0000 | |
---|---|---|
committer | 2010-02-11 13:54:55 +0000 | |
commit | ce85c7f74827b55d173d387ea66777fbd965971b (patch) | |
tree | 3521ed240f1c478fbaafb8e6652c5ef9dbd48546 /src/emu/validity.c | |
parent | 11232428dc1cce24ab9f607cff191054cd049b36 (diff) |
Removed GAME_SHARE_ROMS flag and commented old check for duplicate ROM entries
Diffstat (limited to 'src/emu/validity.c')
-rw-r--r-- | src/emu/validity.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/emu/validity.c b/src/emu/validity.c index a633d9c5dd6..19c9dd7bcad 100644 --- a/src/emu/validity.c +++ b/src/emu/validity.c @@ -443,7 +443,8 @@ static int validate_roms(int drivnum, const machine_config *config, region_array int error = FALSE; /* check for duplicate ROM entries */ - if (driver->rom != NULL && (driver->flags & GAME_NO_STANDALONE) == 0 && (driver->flags & GAME_SHARE_ROMS) == 0) +/* + if (driver->rom != NULL && (driver->flags & GAME_NO_STANDALONE) == 0 ) { char romaddr[20]; sprintf(romaddr, "%p", driver->rom); @@ -454,7 +455,7 @@ static int validate_roms(int drivnum, const machine_config *config, region_array error = TRUE; } } - +*/ /* iterate, starting with the driver's ROMs and continuing with device ROMs */ for (const rom_source *source = rom_first_source(driver, config); source != NULL; source = rom_next_source(driver, config, source)) { |