| 117 | } |
| 118 | |
| 119 | void remipgenerous(const block &b) |
| 120 | { |
| 121 | block bb = b; |
| 122 | if(bb.x>1) bb.x--; |
| 123 | if(bb.y>1) bb.y--; |
| 124 | bb.xs = min(ssize - bb.x - 1, bb.xs + 2); |
| 125 | bb.ys = min(ssize - bb.y - 1, bb.ys + 2); |
| 126 | remip(bb); |
| 127 | } |
| 128 | |
| 129 | static int clentsel = 0, clenttype = NOTUSED, pinnedent = -1; |
| 130 | bool pinnedclosestent = false, pointingatents = false; |
no test coverage detected