From 1a4786a7f1039e8f265dae59e70fc018e90a39c8 Mon Sep 17 00:00:00 2001 From: natinusala Date: Fri, 15 Mar 2019 11:16:29 +0100 Subject: [PATCH] ozone: show metadata name if content logging is disabled --- menu/drivers/ozone/ozone.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/menu/drivers/ozone/ozone.c b/menu/drivers/ozone/ozone.c index 81d83ac7ad..e180c34297 100644 --- a/menu/drivers/ozone/ozone.c +++ b/menu/drivers/ozone/ozone.c @@ -1190,10 +1190,12 @@ void ozone_update_content_metadata(ozone_handle_t *ozone) } else { - snprintf(ozone->selection_playtime, sizeof(ozone->selection_playtime), "%s", + snprintf(ozone->selection_playtime, sizeof(ozone->selection_playtime), "%s %s", + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_RUNTIME), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DISABLED)); - snprintf(ozone->selection_lastplayed, sizeof(ozone->selection_lastplayed), "%s", + snprintf(ozone->selection_lastplayed, sizeof(ozone->selection_lastplayed), "%s %s", + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DISABLED)); } }