diff options
| author | 2011-06-17 02:28:34 +0000 | |
|---|---|---|
| committer | 2011-06-17 02:28:34 +0000 | |
| commit | 3e22ec9a7a38e4121ed24bf62e355311317f44bd (patch) | |
| tree | e2e1ca0214e2c812eb50f4e32dffa8703afc3fc2 /src | |
| parent | 43fe37b4c202bab4f2b4954ab056d6e88485afa8 (diff) | |
A fix for -listclones displaying parents as clones when it uses a BIOS. [Tafoid]
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/clifront.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/clifront.c b/src/emu/clifront.c index 5ac368f12bb..0975fc8c487 100644 --- a/src/emu/clifront.c +++ b/src/emu/clifront.c @@ -396,7 +396,7 @@ void cli_frontend::listclones(const char *gamename) while (drivlist.next()) { int clone_of = drivlist.clone(); - if (clone_of != -1) + if (clone_of != -1 && (drivlist.driver(clone_of).flags & GAME_IS_BIOS_ROOT) == 0) mame_printf_info("%-16s %-8s\n", drivlist.driver().name, drivlist.driver(clone_of).name); } } |
