Fix comment

This commit is contained in:
Mike Primm 2022-02-17 14:35:07 -06:00
parent 8eb69514f2
commit 50dce9b854

View File

@ -178,7 +178,7 @@ public abstract class DynmapWorld {
if ((iwidth == width) && (iheight == height)) {
im.getRGB(0, 0, width, height, argb, 0, width); /* Read data */
im.flush();
/* Do binlinear scale to 64x64 */
/* Do binlinear scale to width/2 x height/2 */
int off = 0;
for(int y = 0; y < height; y += 2) {
off = y*width;