From 8bac249bb81f74ec18358b99b7d0b0ce4e77238d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 12 Feb 2015 23:43:34 +0100 Subject: [PATCH] gl_load_texture_data - take out early return --- gfx/gl_common.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/gfx/gl_common.c b/gfx/gl_common.c index 9323d39ebe..0991dc8fd2 100644 --- a/gfx/gl_common.c +++ b/gfx/gl_common.c @@ -28,9 +28,6 @@ void gl_load_texture_data(GLuint id, bool want_mipmap = false; bool rgb32 = (base_size == (sizeof(uint32_t))); - if (!driver.video) - return; - glBindTexture(GL_TEXTURE_2D, id); wrap = gl_wrap_type_to_enum(wrap_type);