(svn r26201) -Fix: unscaling by a negative value is the same as scaling by a positive number

This commit is contained in:
rubidium 2014-01-02 11:04:37 +00:00
parent 868a67111b
commit fb4db0b022
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ uint GetMaxSpriteID()
static bool ResizeSpriteIn(SpriteLoader::Sprite *sprite, ZoomLevel src, ZoomLevel tgt)
{
uint8 scaled_1 = UnScaleByZoom(1, (ZoomLevel)(tgt - src));
uint8 scaled_1 = ScaleByZoom(1, (ZoomLevel)(src - tgt));
/* Check for possible memory overflow. */
if (sprite[src].width * scaled_1 > UINT16_MAX || sprite[src].height * scaled_1 > UINT16_MAX) return false;