Skip to content

Commit

Permalink
Debug code should check right function names.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 4, 2006
1 parent 4646762 commit 0364cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_blit_N.c
Expand Up @@ -2427,7 +2427,7 @@ SDL_loblit SDL_CalculateBlitN(SDL_Surface *surface, int blit_index)
fprintf(stderr, "Using asm blit\n");
else
#endif
if ( (blitfun == SDL_BlitNtoN) || (blitfun == SDL_BlitNto1) )
if ( (blitfun == BlitNtoN) || (blitfun == BlitNto1) )
fprintf(stderr, "Using C blit\n");
else
fprintf(stderr, "Using optimized C blit\n");
Expand Down

0 comments on commit 0364cdd

Please sign in to comment.