Skip to content

Commit

Permalink
lose the wrong '&' from colormap array.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Sep 11, 2019
1 parent e83f98e commit b657402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IMG_lbm.c
Expand Up @@ -192,7 +192,7 @@ SDL_Surface *IMG_LoadLBM_RW( SDL_RWops *src )
goto done;
}

if ( !SDL_RWread( src, &colormap, size, 1 ) )
if ( !SDL_RWread( src, colormap, size, 1 ) )
{
error="error reading CMAP chunk";
goto done;
Expand Down

0 comments on commit b657402

Please sign in to comment.