Fixes OpenGL ES 2 renderer (Thanks Sylvain Becker)

main
Gabriel Jacobo 2014-06-23 09:25:27 -03:00
parent 620510b337
commit e63e1a5e64
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,7 @@ GLES2_TexSubImage2D(GLES2_DriverContext *data, GLenum target, GLint xoffset, GLi
/* Reformat the texture data into a tightly packed array */ /* Reformat the texture data into a tightly packed array */
src_pitch = width * bpp; src_pitch = width * bpp;
src = (Uint8 *)data; src = (Uint8 *) pixels;
if (pitch != src_pitch) { if (pitch != src_pitch) {
blob = (Uint8 *)SDL_malloc(src_pitch * height); blob = (Uint8 *)SDL_malloc(src_pitch * height);
if (!blob) { if (!blob) {