diff options
author | 2011-02-10 00:05:22 +0000 | |
---|---|---|
committer | 2011-02-10 00:05:22 +0000 | |
commit | 7efcc1571c2d6fbed085f0f2327fb58d399f076f (patch) | |
tree | 54cb8746c6e9075cc5298eacb80979f42088b14f /src/emu/romload.h | |
parent | 83883e5ac3df2fde8baf83ecdb0f9d51b79e76e8 (diff) |
Added information screen output for any game known to have bad or missing data in order to better inform the user as to the reason their emulation may not work as expected. [Alex Jackson]
Diffstat (limited to 'src/emu/romload.h')
-rw-r--r-- | src/emu/romload.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/emu/romload.h b/src/emu/romload.h index 039042ffae4..b4d8584f7f2 100644 --- a/src/emu/romload.h +++ b/src/emu/romload.h @@ -273,12 +273,15 @@ struct rom_entry /* ----- ROM processing ----- */ -/* load the ROMs and open the disk images associated with the given machine */ +/* load the ROMs and open the disk images associated with the given machine */ void rom_init(running_machine *machine); /* return the number of warnings we generated */ int rom_load_warnings(running_machine *machine); +/* return the number of BAD_DUMP/NO_DUMP warnings we generated */ +int rom_load_knownbad(running_machine *machine); + /* ----- Helpers ----- */ |