| 333 | } |
| 334 | |
| 335 | staticfn int |
| 336 | moverock(void) |
| 337 | { |
| 338 | coordxy sx, sy; |
| 339 | int ret; |
| 340 | |
| 341 | sx = u.ux + u.dx, sy = u.uy + u.dy; /* boulder starting position */ |
| 342 | ret = moverock_core(sx, sy); |
| 343 | moverock_done(sx, sy); |
| 344 | return ret; |
| 345 | } |
| 346 | |
| 347 | staticfn int |
| 348 | moverock_core(coordxy sx, coordxy sy) |