Unused variables

And while I’m being OCD, I removed a couple of unused variables I
happened to notice. I noticed a few other warnings fly by at high
speed related to deprecated stuff on OS X. I’m sure I could figure
out what the “correct” replacement for, eg, UpdateSystemActivity
might be, but I couldn’t really guarantee that I didn’t break
something that currently works like maybe compatibility with a 10
year old PowerBook or something in the process. :wink:

Another trivial patch.

Joseph

-------------- next part --------------
diff -r 25355ecf10aa src/video/SDL_blit_A.c
— a/src/video/SDL_blit_A.c Sat Oct 05 21:15:55 2013 -0700
+++ b/src/video/SDL_blit_A.c Sun Oct 06 06:14:11 2013 -0700
@@ -334,7 +334,6 @@
Uint32 *dstp = (Uint32 *) info->dst;
int dstskip = info->dst_skip >> 2;
SDL_PixelFormat *sf = info->src_fmt;

  • Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask;
    Uint32 amask = sf->Amask;
    Uint32 ashift = sf->Ashift;
    Uint64 multmask, multmask2;
    @@ -522,7 +521,6 @@
    Uint32 *dstp = (Uint32 *) info->dst;
    int dstskip = info->dst_skip >> 2;
    SDL_PixelFormat *sf = info->src_fmt;
  • Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask;
    Uint32 amask = sf->Amask;
    Uint32 ashift = sf->Ashift;
    Uint64 multmask, multmask2;