MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / lrect_equal

Function lrect_equal

TheForceEngine/TFE_DarkForces/Landru/lrect.cpp:33–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 3

lfont_drawTextClippedFunction · 0.85
lactorDelt_drawClippedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected