(int x)
| 208 | } |
| 209 | |
| 210 | private void set_xCursor(int x) { |
| 211 | if (x >= xCnt*imgWidth) |
| 212 | return; |
| 213 | xCursor = x/imgWidth; |
| 214 | setRotator(); |
| 215 | if (cursor != lines-1) |
| 216 | return; |
| 217 | if (xCursor >= xLastCnt) |
| 218 | xCursor=xLastCnt-1; |
| 219 | } |
| 220 | |
| 221 | protected void pointerPressed(int x, int y) { |
| 222 | super.pointerPressed(x,y); |
no test coverage detected