| 216 | FVAR(tagcliplinewidth, 0.2, 1, 3); |
| 217 | |
| 218 | inline void forceinsideborders(int &xy) |
| 219 | { |
| 220 | if(xy < MINBORD) xy = MINBORD; |
| 221 | if(xy >= ssize - MINBORD) xy = ssize - MINBORD - 1; |
| 222 | } |
| 223 | |
| 224 | void cursorupdate() // called every frame from hud |
| 225 | { |