From a8d2b6f539e6a9cf49a6cd3684a305d5eed992a5 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 5 Aug 2011 12:09:07 +0000 Subject: [PATCH] Fixed silly typo (no whatsnew) --- src/emu/clifront.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/clifront.c b/src/emu/clifront.c index 585e04c0760..9993a791438 100644 --- a/src/emu/clifront.c +++ b/src/emu/clifront.c @@ -462,14 +462,14 @@ void cli_frontend::listcrc(const char *gamename) while (drivlist.next()) for (const rom_source *source = rom_first_source(drivlist.config()); source != NULL; source = rom_next_source(*source)) { - bool isdiver = (source == rom_first_source(drivlist.config())); + bool isdriver = (source == rom_first_source(drivlist.config())); for (const rom_entry *region = rom_first_region(*source); region; region = rom_next_region(region)) for (const rom_entry *rom = rom_first_file(region); rom; rom = rom_next_file(rom)) { // 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), isdiver ? drivlist.driver().description : source->name()); + mame_printf_info("%08x %-16s %s\n", crc, ROM_GETNAME(rom), isdriver ? drivlist.driver().description : source->name()); } } }