diff options
Diffstat (limited to 'src/ui/touch.c')
-rw-r--r-- | src/ui/touch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/touch.c b/src/ui/touch.c index 20ccf7b8..a178a913 100644 --- a/src/ui/touch.c +++ b/src/ui/touch.c | |||
@@ -638,11 +638,14 @@ iBool processEvent_Touch(const SDL_Event *ev) { | |||
638 | pixels.x = 0; | 638 | pixels.x = 0; |
639 | } | 639 | } |
640 | #if 0 | 640 | #if 0 |
641 | printf("%p (%s) py: %i wy: %f acc: %f edge: %d\n", | 641 | static uint32_t lastTime = 0; |
642 | printf("%u :: %p (%s) py: %i wy: %f acc: %f edge: %d\n", | ||
643 | nowTime - lastTime, | ||
642 | touch->affinity, | 644 | touch->affinity, |
643 | class_Widget(touch->affinity)->name, | 645 | class_Widget(touch->affinity)->name, |
644 | pixels.y, y_F3(amount), y_F3(touch->accum), | 646 | pixels.y, y_F3(amount), y_F3(touch->accum), |
645 | touch->edge); | 647 | touch->edge); |
648 | lastTime = nowTime; | ||
646 | #endif | 649 | #endif |
647 | if (pixels.x || pixels.y) { | 650 | if (pixels.x || pixels.y) { |
648 | //setFocus_Widget(NULL); | 651 | //setFocus_Widget(NULL); |