@@ -1507,7 +1507,6 @@ else if (rotation == 3)
1507
1507
//What is offsetY?
1508
1508
int objSizeOffset = Math .max (2 , object .getOffsetY ());
1509
1509
int drawY = (drawBaseY + (Region .Y - objSizeOffset - localY )) * MAP_SCALE ;
1510
-
1511
1510
if (object .getMapSceneID () != -1 )
1512
1511
{
1513
1512
blitMapDecoration (image , drawX , drawY , object );
@@ -1850,23 +1849,21 @@ private void blitIcon(BufferedImage dst, int x, int y, SpriteDefinition sprite,
1850
1849
float stepSizeHeight = 1 + 1 - scale ;
1851
1850
float stepSizeWidth = 1 + 1 - scale ;
1852
1851
1853
- int ymin = Math .max (0 , -y );
1854
- int ymax = Math .min (displayHeight , dst .getHeight () - y );
1855
-
1856
- int xmin = Math .max (0 , -x );
1857
- int xmax = Math .min (displayWidth , dst .getWidth () - x );
1858
1852
1859
1853
float indexX = 0 ;
1860
1854
float indexY = 0 ;
1861
- for (int yo = ymin ; yo < ymax ; yo ++)
1855
+ for (int yo = 0 ; yo < displayHeight ; yo ++)
1862
1856
{
1863
- for (int xo = xmin ; xo < xmax ; xo ++)
1857
+ for (int xo = 0 ; xo < displayWidth ; xo ++)
1864
1858
{
1865
- int index = (int ) (indexX ) + ((int ) (indexY ) * (sprite .getWidth ()));
1866
- byte color = sprite .pixelIdx [index ];
1867
- if (color != 0 )
1859
+ if (x + xo >= 0 && x + xo < dst .getWidth () && y + yo >= 0 && y + yo < dst .getHeight ())
1868
1860
{
1869
- dst .setRGB (x + xo , y + yo , sprite .palette [color & 255 ] | 0xFF000000 );
1861
+ int index = (int ) (indexX ) + ((int ) (indexY ) * (sprite .getWidth ()));
1862
+ byte color = sprite .pixelIdx [index ];
1863
+ if (color != 0 )
1864
+ {
1865
+ dst .setRGB (x + xo , y + yo , sprite .palette [color & 255 ] | 0xFF000000 );
1866
+ }
1870
1867
}
1871
1868
indexX += stepSizeWidth ;
1872
1869
}
0 commit comments