add logging

This commit is contained in:
Christoph Baumann
2025-05-21 21:05:38 +02:00
parent 7c86c4c047
commit c2691d917c

View File

@@ -467,12 +467,15 @@ static void load_emummc_ctx(void)
}
DEBUG_LOG("Final config:\n");
DEBUG_LOG_ARGS("SD: en: %d, off: 0x%x\n",
emuMMC_ctx.SD_Type, emuMMC_ctx.SD_StoragePartitionOffset);
DEBUG_LOG_ARGS("SD: en: %d, off: 0x%x\n"
" path: %s\n",
emuMMC_ctx.SD_Type, emuMMC_ctx.SD_StoragePartitionOffset,
emuMMC_ctx.SD_storagePath);
DEBUG_LOG_ARGS("EMMC: en: %d, off: 0x%x\n"
" path: %s\n"
" npath: %s\n",
emuMMC_ctx.EMMC_Type, emuMMC_ctx.EMMC_StoragePartitionOffset, emuMMC_ctx.storagePath, nintendo_path);
DEBUG_LOG_ARGS("FS version: %d\n", emuMMC_ctx.fs_ver);
}
void setup_nintendo_paths(void)