Hi Gernot,
I just reproduced it easily.
Here is how I typed my functions.
FUNCTION drawWorld: x%, y% // draws world nodes
DRAWSPRITE sprEmpty, grid[x][y].x, grid[x][y].y
ENDFUNCTION
FUNCTION drawEntity: id%, xNode%, yNode% // draws entities
IF imgSeg[id].isEmpty = FALSE
DRAWSPRITE imgSeg[id].spr, grid[xNode][yNode].x, grid[xNode][yNode].y
ENDIF
ENDFUNCTION
I had them folded, pressed 'save all opened files', and closed the IDE.
Then when I reopened, the folded functions had no space between.
Unfold them, and they look like this.
FUNCTION drawWorld: x%, y% // draws world nodes
DRAWSPRITE sprEmpty, grid[x][y].x, grid[x][y].y
ENDFUNCTION
FUNCTION drawEntity: id%, xNode%, yNode% // draws entities
IF imgSeg[id].isEmpty = FALSE
DRAWSPRITE imgSeg[id].spr, grid[xNode][yNode].x, grid[xNode][yNode].y
ENDIF
ENDFUNCTION
As you see, there is no real damage, just lost whitespace.
regards,
Dave