mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
unix/SDL_systimer.c: add ';' to statement
This commit is contained in:
parent
cbe01319e0
commit
ec14487e1d
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ void SDL_DelayNS(Uint64 ns)
|
|||
break;
|
||||
}
|
||||
ns -= elapsed;
|
||||
tv.tv_sec = (ns / SDL_NS_PER_SECOND)
|
||||
tv.tv_sec = (ns / SDL_NS_PER_SECOND);
|
||||
tv.tv_usec = SDL_NS_TO_US(ns % SDL_NS_PER_SECOND);
|
||||
|
||||
was_error = select(0, NULL, NULL, NULL, &tv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue