diff options
Diffstat (limited to 'src/mame/drivers/bfm_ad5.cpp')
-rw-r--r-- | src/mame/drivers/bfm_ad5.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/mame/drivers/bfm_ad5.cpp b/src/mame/drivers/bfm_ad5.cpp index cf4f4501c0f..be650aba75b 100644 --- a/src/mame/drivers/bfm_ad5.cpp +++ b/src/mame/drivers/bfm_ad5.cpp @@ -38,17 +38,25 @@ DRIVER_INIT_MEMBER(adder5_state,ad5) // find it. int found = find_project_string(machine(), 3, 0); if (!found) + { printf("Normal rom pair string not found, checking mismatched / missing rom string\n"); + } // help identify roms where one of the pair is missing too if (!found) { - found = find_project_string(machine(), 3, 1); - found = find_project_string(machine(), 3, 2); + found = find_project_string(machine(), 3, 1); } - if (!found) + if (!found) + { + found = find_project_string(machine(), 3, 2); + } + + if (!found) + { printf("No suitable string found\n"); + } } |