summaryrefslogtreecommitdiff
path: root/romdb.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2019-03-27 22:23:55 -0700
committerMichael Pavone <pavone@retrodev.com>2019-03-27 22:23:55 -0700
commit37e227263303d9f0a048551bc2ee9c3de6294662 (patch)
tree9a08d382d135e919a906f484d512567cd3a58b70 /romdb.c
parent62e10bddeaec560ef8e1f95a9058e3789646c98e (diff)
Restore some newlines in debug output that got lost when fixing GDB remote debugging issue
Diffstat (limited to 'romdb.c')
-rw-r--r--romdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/romdb.c b/romdb.c
index 88d199b..b7bee28 100644
--- a/romdb.c
+++ b/romdb.c
@@ -898,7 +898,7 @@ rom_info configure_rom(tern_node *rom_db, void *vrom, uint32_t rom_size, void *l
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 @@ rom_info configure_rom(tern_node *rom_db, void *vrom, uint32_t rom_size, void *l
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);