mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-05 01:16:26 +00:00
unix/SDL_systimer.c: add ';' to statement
This commit is contained in:
@@ -179,7 +179,7 @@ void SDL_DelayNS(Uint64 ns)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
ns -= elapsed;
|
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);
|
tv.tv_usec = SDL_NS_TO_US(ns % SDL_NS_PER_SECOND);
|
||||||
|
|
||||||
was_error = select(0, NULL, NULL, NULL, &tv);
|
was_error = select(0, NULL, NULL, NULL, &tv);
|
||||||
|
Reference in New Issue
Block a user