From: Chris Tallon Date: Sun, 26 Nov 2006 16:59:44 +0000 (+0000) Subject: OK some printfs X-Git-Tag: r0-2-5^0 X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=63eaca59957f837a8166c5daf78783b9294df71b;p=vompclient.git OK some printfs --- diff --git a/region.cc b/region.cc index fbcb793..5141b72 100644 --- a/region.cc +++ b/region.cc @@ -38,7 +38,7 @@ Region Region::subtract(Region& other) if (x < other.x) { - printf("Case 1\n"); +OK printf("Case 1\n"); s.x = x; s.y = y; s.w = other.x - x; @@ -46,7 +46,7 @@ Region Region::subtract(Region& other) } else if (x2() > other.x2()) { - printf("Case 2\n"); +OK printf("Case 2\n"); s.x = other.x2()+1; s.y = y; s.w = w - s.x; @@ -54,7 +54,7 @@ Region Region::subtract(Region& other) } else if (y < other.y) { - printf("Case 3\n"); +OK printf("Case 3\n"); s.x = x; s.y = y; s.w = w; @@ -62,7 +62,7 @@ Region Region::subtract(Region& other) } else if (y2() > other.y2()) { - printf("Case 4\n"); +OK printf("Case 4\n"); s.x = x; s.y = other.y2()+1; s.w = w;