浏览代码

Added a few debug printf() calls.

Ryan C. Gordon 11 年之前
父节点
当前提交
7364ed016b
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      test/testhittesting.c

+ 2 - 0
test/testhittesting.c

@@ -18,10 +18,12 @@ hitTest(SDL_Window *window, const SDL_Point *pt, void *data)
     int i;
     for (i = 0; i < numareas; i++) {
         if (SDL_PointInRect(pt, &areas[i])) {
+            printf("HIT-TEST: DRAGGABLE\n");
             return SDL_HITTEST_DRAGGABLE;
         }
     }
 
+    printf("HIT-TEST: NORMAL\n");
     return SDL_HITTEST_NORMAL;
 }