Mercurial > repos > blastem
diff romdb.c @ 1810:73a9d06413bc
Restore some newlines in debug output that got lost when fixing GDB remote debugging issue
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Wed, 27 Mar 2019 22:23:55 -0700 |
parents | 4cd226288958 |
children | 8500bd987dda |
line wrap: on
line diff
--- a/romdb.c Wed Mar 27 22:19:49 2019 -0700 +++ b/romdb.c Wed Mar 27 22:23:55 2019 -0700 @@ -898,7 +898,7 @@ entry = tern_find_node(rom_db, product_id); } if (!entry) { - debug_message("Not found in ROM DB, examining header\n"); + debug_message("Not found in ROM DB, examining header\n\n"); if (xband_detect(rom, rom_size)) { return xband_configure_rom(rom_db, rom, rom_size, lock_on, lock_on_size, base_map, base_chunks); } @@ -911,7 +911,7 @@ info.mapper_type = MAPPER_NONE; info.name = tern_find_ptr(entry, "name"); if (info.name) { - debug_message("Found name: %s\n", info.name); + debug_message("Found name: %s\n\n", info.name); info.name = strdup(info.name); } else { info.name = get_header_name(rom);