diff --git a/menu/cbs/menu_cbs_cancel.c b/menu/cbs/menu_cbs_cancel.c index 4891ed22cb..830cfb6e6d 100644 --- a/menu/cbs/menu_cbs_cancel.c +++ b/menu/cbs/menu_cbs_cancel.c @@ -37,10 +37,6 @@ static int action_cancel_pop_default(const char *path, menu_entries_get_last_stack(NULL, &menu_label, NULL, NULL, NULL); -#if 0 - RARCH_LOG("menu_label: %s\n", menu_label); -#endif - if (!string_is_empty(menu_label)) { if ( diff --git a/menu/drivers/materialui.c b/menu/drivers/materialui.c index 08e989f3b1..b5f7401629 100644 --- a/menu/drivers/materialui.c +++ b/menu/drivers/materialui.c @@ -726,7 +726,7 @@ static void mui_render_label_value(mui_handle_t *mui, mui_node_t *node, bool do_draw_text = false; size_t usable_width = width - (mui->margin * 2); uint32_t sublabel_color = 0x888888ff; - enum msg_file_type type = msg_hash_to_file_type(msg_hash_calculate(value)); + enum msg_file_type hash_type = msg_hash_to_file_type(msg_hash_calculate(value)); float scale_factor = menu_display_get_dpi(); label_str[0] = value_str[0] = @@ -794,7 +794,7 @@ static void mui_render_label_value(mui_handle_t *mui, mui_node_t *node, } else { - switch (type) + switch (hash_type) { case FILE_TYPE_COMPRESSED: case FILE_TYPE_MORE: @@ -819,7 +819,7 @@ static void mui_render_label_value(mui_handle_t *mui, mui_node_t *node, texture_switch2 = node->texture_switch2; else { - switch (type) + switch (hash_type) { case FILE_TYPE_COMPRESSED: texture_switch2 = mui->textures.list[MUI_TEXTURE_ARCHIVE]; diff --git a/menu/drivers/rgui.c b/menu/drivers/rgui.c index fbba787ffe..4a017bd0f4 100644 --- a/menu/drivers/rgui.c +++ b/menu/drivers/rgui.c @@ -491,10 +491,6 @@ static void rgui_render(void *data, bool is_idle) rgui_render_background(); -#if 0 - RARCH_LOG("Dir is: %s\n", label); -#endif - menu_entries_get_title(title, sizeof(title)); ticker.s = title_buf; diff --git a/menu/widgets/menu_list.c b/menu/widgets/menu_list.c index f135686458..5cd4d14292 100644 --- a/menu/widgets/menu_list.c +++ b/menu/widgets/menu_list.c @@ -167,11 +167,6 @@ void menu_list_flush_stack(menu_list_t *list, menu_entries_get_last(menu_list, &path, &label, &type, &entry_idx); - -#if 0 - RARCH_LOG("path: %s\n", path); - RARCH_LOG("label: %s\n", label); -#endif } }