diff --git a/firmware/common/pathfuncs.c b/firmware/common/pathfuncs.c index d4f4415526..db1935db8b 100644 --- a/firmware/common/pathfuncs.c +++ b/firmware/common/pathfuncs.c @@ -113,6 +113,7 @@ static const unsigned char storage_dec_indexes[STORAGE_NUM_TYPES+1] = /* builds a list of drive/volume specifiers */ void init_volume_names(void) { + DEBUGF("%s: ", __func__); FOR_EACH_VOLUME(-1, volume) { const char *voldec = ""; @@ -124,8 +125,9 @@ void init_volume_names(void) voldec = storage_dec_names[storage_dec_indexes[type]]; snprintf(buffer, VOL_MAX_LEN + 1, "%c%s%d%c", VOL_START_TOK, voldec, volume, VOL_END_TOK); - DEBUGF("%s: vol: %d %s", __func__, volume, buffer); + DEBUGF("vol<%d> = %s ", volume, buffer); } + DEBUGF("\n"); } /* Returns on which volume this is and sets *nameptr to the portion of the diff --git a/uisimulator/common/sim_tasks.c b/uisimulator/common/sim_tasks.c index e5646e62d3..0e5f7fbe7a 100644 --- a/uisimulator/common/sim_tasks.c +++ b/uisimulator/common/sim_tasks.c @@ -30,6 +30,7 @@ #include "usb.h" #include "mv.h" #include "ata_idle_notify.h" +#include "pathfuncs.h" #ifdef WIN32 #include #endif @@ -133,6 +134,7 @@ void sim_thread(void) void sim_tasks_init(void) { + init_volume_names(); queue_init(&sim_queue, false); create_thread(sim_thread, sim_thread_stack, sizeof(sim_thread_stack), 0,