mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-08-28 17:41:38 +00:00
Fixed building with Visual Studio 2010
This commit is contained in:
@@ -50,7 +50,7 @@ SDL_GetPerformanceFrequency(void)
|
||||
|
||||
void SDL_DelayNS(Uint64 ns)
|
||||
{
|
||||
const Uint64 max_delay = 0xffffffffLLU * SDL_NS_PER_US;
|
||||
const Uint64 max_delay = 0xffffffffLL * SDL_NS_PER_US;
|
||||
if (ns > max_delay) {
|
||||
ns = max_delay;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user