Skip to content

Commit

Permalink
Paramater agreement (#54381)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade authored Jan 14, 2022
1 parent 7c60531 commit 0d7276f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdltiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3679,10 +3679,10 @@ SDL_Color color_loader<SDL_Color>::from_rgb( const int r, const int g, const int
return result;
}

void input_manager::set_timeout( const int t )
void input_manager::set_timeout( const int delay )
{
input_timeout = t;
inputdelay = t;
input_timeout = delay;
inputdelay = delay;
}

void input_manager::pump_events()
Expand Down

0 comments on commit 0d7276f

Please sign in to comment.