Update logs

This commit is contained in:
twinaphex 2017-04-23 11:56:46 +02:00
parent 0f2a6f3dd2
commit 953045f0d2
3 changed files with 6 additions and 6 deletions

View File

@ -867,7 +867,7 @@ static void *gfx_ctx_wl_init(video_frame_info_t *video_info, void *video_driver)
if (!wl->dpy)
{
RARCH_ERR("Failed to connect to Wayland server.\n");
RARCH_ERR("[Wayland]: Failed to connect to Wayland server.\n");
goto error;
}
@ -879,19 +879,19 @@ static void *gfx_ctx_wl_init(video_frame_info_t *video_info, void *video_driver)
if (!wl->compositor)
{
RARCH_ERR("Failed to create compositor.\n");
RARCH_ERR("[Wayland]: Failed to create compositor.\n");
goto error;
}
if (!wl->shm)
{
RARCH_ERR("Failed to create shm.\n");
RARCH_ERR("[Wayland]: Failed to create shm.\n");
goto error;
}
if (!wl->shell)
{
RARCH_ERR("Failed to create shell.\n");
RARCH_ERR("[Wayland]: Failed to create shell.\n");
goto error;
}

View File

@ -66,7 +66,7 @@ int font_renderer_create_default(const void **data, void **handle,
*handle = font_backends[i]->init(path, font_size);
if (*handle)
{
RARCH_LOG("Using font rendering backend: %s.\n",
RARCH_LOG("[Font]: Using font rendering backend: %s.\n",
font_backends[i]->ident);
*drv = font_backends[i];
return 1;

View File

@ -458,7 +458,7 @@ bool menu_display_init_first_driver(void)
menu_display_ctx_drivers[i]->type))
continue;
RARCH_LOG("Found menu display driver: \"%s\".\n",
RARCH_LOG("[Menu]: Found menu display driver: \"%s\".\n",
menu_display_ctx_drivers[i]->ident);
menu_disp = menu_display_ctx_drivers[i];
return true;