Skip to content
Snippets Groups Projects
Commit e3742f0c authored by Christian Göttsche's avatar Christian Göttsche Committed by Yorhel
Browse files

Remove redundant cast to the same type

(cherry picked from commit ef7b4e5c28739c26b3a120296f9dc2ddaf2d4375)
parent 39592100
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ int input_handle(int wait) {
if(wait != 1)
screen_draw();
else {
gettimeofday(&tv, (void *)NULL);
gettimeofday(&tv, NULL);
tv.tv_usec = (1000*(tv.tv_sec % 1000) + (tv.tv_usec / 1000)) / update_delay;
if(lastupdate != tv.tv_usec) {
screen_draw();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment