X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Frect.cpp;h=693cf31582e34b3533bb1df7bbd73a9a60b71fa6;hb=0e8f4edf80206248f0ad87a966d69d9ec9da3d2f;hp=8c9c74ed70c949ef22a49553afe150f9de021f77;hpb=ccac11461956c9c0cc9756f8963436b5d88dfbb7;p=architektonas diff --git a/src/rect.cpp b/src/rect.cpp index 8c9c74e..693cf31 100644 --- a/src/rect.cpp +++ b/src/rect.cpp @@ -119,12 +119,12 @@ bool Rect::Contains(Point p) Point Rect::TopLeft(void) { - return Point(t, l); + return Point(l, t); } Point Rect::BottomRight(void) { - return Point(b, r); + return Point(r, b); }