
does anyone know why the above happens? Its just the normal DrawText command.
Ta!
-Chris


Function DrawBorder(xx,yy,width_in,height_in) width = width_in - 1 height = height_in - 1 x1 = xx x2 = xx+width y1 = yy y2 = yy+height DrawLine x1,y1,x2,y1 DrawLine x1,y1,x1,y2 DrawLine x2,y1,x2,y2 DrawLine x1,y2,x2,y2 End Function
DrawText "Screen Y: " + ScreenY,TileAreaX + 4,TileAreaY + 12