From be05eb67d21613248923e6ba68eef8432f8b6f3e Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 18 Nov 2012 15:04:42 +0100 Subject: [PATCH] Log if FBO targets fail to initialize. --- gfx/gl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/gl.c b/gfx/gl.c index 67dc8f8d40..9a4de6a06d 100644 --- a/gfx/gl.c +++ b/gfx/gl.c @@ -582,6 +582,7 @@ void gl_init_fbo(gl_t *gl, unsigned width, unsigned height) if (!gl_create_fbo_targets(gl)) { glDeleteTextures(gl->fbo_pass, gl->fbo_texture); + RARCH_ERR("Failed to create FBO targets. Will continue without FBO.\n"); return; }