| 31 | } |
| 32 | |
| 33 | JBool lrect_equal(LRect* r1, LRect* r2) |
| 34 | { |
| 35 | s16 notEqual = 0; |
| 36 | notEqual |= (r1->left != r2->left); |
| 37 | notEqual |= (r1->top != r2->top); |
| 38 | notEqual |= (r1->right != r2->right); |
| 39 | notEqual |= (r1->bottom != r2->bottom); |
| 40 | |
| 41 | return notEqual ? JFALSE : JTRUE; |
| 42 | } |
| 43 | |
| 44 | void lrect_offset(LRect* rect, s16 dx, s16 dy) |
| 45 | { |
no outgoing calls
no test coverage detected