include set short name so you can grep a crc from a mame -listcrc * and not have to guess what the game is from the description.

This commit is contained in:
smf- 2011-10-14 13:12:10 +00:00
parent 291757a12c
commit 66afb904f7

View File

@ -469,7 +469,7 @@ void cli_frontend::listcrc(const char *gamename)
// if we have a CRC, display it
UINT32 crc;
if (hash_collection(ROM_GETHASHDATA(rom)).crc(crc))
mame_printf_info("%08x %-16s %s\n", crc, ROM_GETNAME(rom), isdriver ? drivlist.driver().description : source->name());
mame_printf_info("%08x %-16s %-16s %s\n", crc, ROM_GETNAME(rom), source->shortname(), isdriver ? drivlist.driver().description : source->name());
}
}
}