goom/filters: Remove dead assignment. Value overwritten just after.

This commit is contained in:
Edward Hervey 2009-04-18 18:46:12 +02:00
parent bf9c2067cf
commit f6458e2c4c

View file

@ -281,7 +281,7 @@ makeZoomBufferStripe (ZoomFilterFXWrapperData * data, int INTERLACE_INCR)
Uint x, y;
// Where (verticaly) to stop generating the buffer stripe
int maxEnd = (data->interlace_start + INTERLACE_INCR);
int maxEnd;
// Ratio from pixmap to normalized coordinates
float ratio = 2.0f / ((float) data->prevX);