From 40455845ba1e8f68461ffba5d33cd32e83517150 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sun, 2 Sep 2018 16:31:10 +0700 Subject: [PATCH] Dump microcode string to log file. --- src/GBI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GBI.cpp b/src/GBI.cpp index e6997f3d..7492d403 100644 --- a/src/GBI.cpp +++ b/src/GBI.cpp @@ -443,7 +443,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize) if (type != NONE) { current.type = type; - LOG(LOG_VERBOSE, "Load microcode type: %d crc: 0x%08x romname: %s\n", current.type, uc_crc, RSP.romname); + LOG(LOG_VERBOSE, "Load microcode (%s) type: %d crc: 0x%08x romname: %s\n", uc_str, current.type, uc_crc, RSP.romname); _makeCurrent(¤t); return; }