Merge pull request #2221 from npwoods/validation_has_own_options

Changed the validity checks to have its own emu_options
This commit is contained in:
R. Belmont 2017-04-14 07:30:12 -04:00 committed by GitHub
commit f2accb7bd7

View File

@ -298,7 +298,8 @@ void validity_checker::validate_one(const game_driver &driver)
// wrap in try/except to catch fatalerrors
try
{
machine_config config(driver, m_drivlist.options());
emu_options options;
machine_config config(driver, options);
m_current_config = &config;
validate_driver();
validate_roms();