mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Update logs
This commit is contained in:
parent
0f2a6f3dd2
commit
953045f0d2
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user