Bug #228 ยป 0029-SDL3_gfx-Clear-out-unused-variables.patch
| dependencies/SDL3_gfx/SDL3_rotozoom.c | ||
|---|---|---|
|
double zoominv;
|
||
|
double sanglezoom, canglezoom, sanglezoominv, canglezoominv;
|
||
|
int dstwidthhalf, dstwidth, dstheighthalf, dstheight;
|
||
|
int i, src_converted;
|
||
|
int src_converted;
|
||
|
int flipx,flipy;
|
||
|
/*
|
||
| ... | ... | |
|
SDL_Surface *rz_src;
|
||
|
SDL_Surface *rz_dst;
|
||
|
int dstwidth, dstheight;
|
||
|
int i, src_converted;
|
||
|
int src_converted;
|
||
|
int flipx, flipy;
|
||
|
/*
|
||
| ... | ... | |
|
SDL_Surface *rz_src;
|
||
|
SDL_Surface *rz_dst = NULL;
|
||
|
int dstwidth, dstheight;
|
||
|
int i, src_converted;
|
||
|
int src_converted;
|
||
|
int haveError = 0;
|
||
|
/*
|
||