mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-29 12:07:41 +01:00
Fix comment
This commit is contained in:
parent
8eb69514f2
commit
50dce9b854
@ -178,7 +178,7 @@ public abstract class DynmapWorld {
|
|||||||
if ((iwidth == width) && (iheight == height)) {
|
if ((iwidth == width) && (iheight == height)) {
|
||||||
im.getRGB(0, 0, width, height, argb, 0, width); /* Read data */
|
im.getRGB(0, 0, width, height, argb, 0, width); /* Read data */
|
||||||
im.flush();
|
im.flush();
|
||||||
/* Do binlinear scale to 64x64 */
|
/* Do binlinear scale to width/2 x height/2 */
|
||||||
int off = 0;
|
int off = 0;
|
||||||
for(int y = 0; y < height; y += 2) {
|
for(int y = 0; y < height; y += 2) {
|
||||||
off = y*width;
|
off = y*width;
|
||||||
|
Loading…
Reference in New Issue
Block a user