Skip to content

Commit

Permalink
Increased click interval.
Browse files Browse the repository at this point in the history
  • Loading branch information
captainys committed May 17, 2021
1 parent fc8757b commit 2a146d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/towns/townsapp_dunmas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ static void Dunmas_PushBack_MouseClick(TownsEventLog &eventLog,int x,int y)
{
TownsEventLog::Event e;
e.eventType=TownsEventLog::EVT_LBUTTONDOWN;
e.t=std::chrono::milliseconds(50);
e.t=std::chrono::milliseconds(75);
e.mos.Set(x,y);
eventLog.AddEvent(e);

e.eventType=TownsEventLog::EVT_LBUTTONUP;
e.t=std::chrono::milliseconds(50);
e.t=std::chrono::milliseconds(75);
e.mos.Set(x,y);
eventLog.AddEvent(e);
}
Expand Down

0 comments on commit 2a146d4

Please sign in to comment.