From 48b0bc7f2d39e7bc47bd52834300463894824a6b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 9 Nov 2012 21:52:07 +0100 Subject: [PATCH] (Android) Use eglGetError --- gfx/context/androidegl_ctx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index a0ab8053f4..176fe63381 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -188,6 +188,7 @@ static bool gfx_ctx_init(void) return true; error: + RARCH_ERR("EGL error: %d.\n", eglGetError()); gfx_ctx_destroy(); return false; }