diff -r 9d2f0236322b -r 59cbb9959346 test/testhittesting.c --- a/test/testhittesting.c Wed May 28 01:22:47 2014 -0400 +++ b/test/testhittesting.c Wed May 28 01:27:27 2014 -0400 @@ -18,10 +18,12 @@ 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; }