(Menu drivers) Remove warnings about missing assets

This commit is contained in:
LibretroAdmin 2022-10-24 16:45:17 +02:00
parent f389c08109
commit 3c7e4b032e
3 changed files with 0 additions and 12 deletions

View File

@ -2410,12 +2410,6 @@ static void materialui_context_reset_textures(materialui_handle_t *mui)
TEXTURE_FILTER_MIPMAP_LINEAR, NULL, NULL))
has_all_assets = false;
}
/* Warn user if assets are missing */
if (!has_all_assets)
runloop_msg_queue_push(
msg_hash_to_str(MSG_MISSING_ASSETS), 1, 256, false, NULL,
MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
}
static void materialui_draw_icon(

View File

@ -8517,11 +8517,6 @@ static void ozone_context_reset(void *data, bool is_threaded)
ozone->animations.scroll_y = 0.0f;
ozone->animations.list_alpha = 1.0f;
/* Missing assets message */
if (!ozone->has_all_assets)
runloop_msg_queue_push(msg_hash_to_str(MSG_MISSING_ASSETS),
1, 256, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
/* Thumbnails */
ozone_update_thumbnail_image(ozone);
ozone_update_savestate_thumbnail_image(ozone);

View File

@ -6793,7 +6793,6 @@ static bool xmb_context_reset_textures(
&& !(menu_xmb_theme == XMB_ICON_THEME_CUSTOM)
)
{
runloop_msg_queue_push(msg_hash_to_str(MSG_MISSING_ASSETS), 1, 256, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
/* Do not draw icons if subsetting is missing */
return false;
}