Skip to content

Commit

Permalink
Android: Fix broken double-tap after 49 days uptime
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Nov 3, 2019
1 parent 388ea73 commit 2907c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/touchscreengui.h
Expand Up @@ -230,7 +230,7 @@ class TouchScreenGUI

int m_move_id = -1;
bool m_move_has_really_moved = false;
s64 m_move_downtime = 0;
u64 m_move_downtime = 0;
bool m_move_sent_as_mouse_event = false;
v2s32 m_move_downlocation = v2s32(-10000, -10000);

Expand Down Expand Up @@ -296,7 +296,7 @@ class TouchScreenGUI
// doubleclick detection variables
struct key_event
{
unsigned int down_time;
u64 down_time;
s32 x;
s32 y;
};
Expand Down

0 comments on commit 2907c0f

Please sign in to comment.