(svn r10070) -Fix: fix the rounding problem of zoom-levels in zoom.hpp, so it is global for every call

This commit is contained in:
truelight
2007-06-08 18:45:14 +00:00
parent f4c1938af9
commit e9c2c4a27e
2 changed files with 3 additions and 3 deletions

View File

@@ -856,7 +856,7 @@ static inline void GfxBlitTileZoom(BlitterParams *bp)
if (num <= 0) continue;
}
num = UnScaleByZoom(num + ScaleByZoom(1, Tzoom) - 1, Tzoom);
num = UnScaleByZoom(num, Tzoom);
switch (Tmode) {
case BM_COLOUR_REMAP: