diff options
author | Pixel <pixel@nobis-crew.org> | 2009-12-20 16:42:40 +0100 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-12-20 16:42:40 +0100 |
commit | 0a82bfbeffd17236ce8a63251a95f05effd9ec91 (patch) | |
tree | 069f617b62f2d2e61c685ab6f69069ac2af1ce69 | |
parent | 775500b709be0d14ad89f63970bf971d68c89407 (diff) |
Optimization tentative.
-rw-r--r-- | dalos.lua | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -104,17 +104,15 @@ dalosp.canvas = { cv:TextAlignment(cd.NORTH) cv:Text(x, iy(y1 + 3), dalosp.cross.north.name) end + cv:TextAlignment(cd.SOUTH) if dalosp.cross.south then - cv:TextAlignment(cd.SOUTH) cv:Text(x, iy(y2 - 3), dalosp.cross.south.name) end if dalosp.cross.west then - cv:TextAlignment(cd.SOUTH) cv:TextOrientation(270) cv:Text(x1 + 3, iy(y), dalosp.cross.west.name) end if dalosp.cross.east then - cv:TextAlignment(cd.SOUTH) cv:TextOrientation(90) cv:Text(x2 - 3, iy(y), dalosp.cross.east.name) end |