From c1d562225564c244dd5c7507892652a5195c697a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 8 Nov 2017 16:41:37 +0100 Subject: [PATCH] Get rid of another ifdef --- gfx/drivers/gl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gfx/drivers/gl.c b/gfx/drivers/gl.c index 68b31f29d7..9115695b87 100644 --- a/gfx/drivers/gl.c +++ b/gfx/drivers/gl.c @@ -1981,12 +1981,10 @@ static void *gl_init(const video_info_t *video, const input_driver_t **input, vo * the texture with on res change. */ gl->empty_buf = calloc(sizeof(uint32_t), gl->tex_w * gl->tex_h); -#if !defined(HAVE_PSGL) gl->conv_buffer = calloc(sizeof(uint32_t), gl->tex_w * gl->tex_h); if (!gl->conv_buffer) goto error; -#endif gl_init_textures(gl, video); gl_init_textures_data(gl);