From 062e1e7eab834fa9c493266af1a08170049d2344 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 31 Jan 2015 06:00:31 +0100 Subject: [PATCH] Warn about Failed to bind context driver instead of doing a RARCH_ERR --- gfx/video_context_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/video_context_driver.c b/gfx/video_context_driver.c index 06499bebe8..4bb28b0d89 100644 --- a/gfx/video_context_driver.c +++ b/gfx/video_context_driver.c @@ -162,7 +162,7 @@ static const gfx_ctx_driver_t *gfx_ctx_init(void *data, return ctx; } - RARCH_ERR("Failed to bind API (#%u, version %u.%u) on context driver \"%s\".\n", + RARCH_WARN("Failed to bind API (#%u, version %u.%u) on context driver \"%s\".\n", (unsigned)api, major, minor, ctx->ident); return NULL;