Get rid of another ifdef

This commit is contained in:
twinaphex 2017-11-08 16:41:37 +01:00
parent 4b0932ffb3
commit c1d5622255

View File

@ -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);