File diff r2072:93fbc12acd5b → r2073:6be1dac46f17
win32.c
Show inline comments
 
@@ -2124,6 +2124,7 @@ int APIENTRY WinMain(HINSTANCE hInstance
 
	_random_seeds[0][0] = GetTickCount();
 
	_random_seeds[0][1] = _random_seeds[0][0] * 0x1234567;
 
#endif
 
	SeedMT(_random_seeds[0][0]);
 

	
 
	argc = ParseCommandLine(GetCommandLine(), argv, lengthof(argv));
 

	
 
@@ -2263,3 +2264,9 @@ void JoinOTTDThread(void)
 

	
 
	WaitForSingleObject(hThread, INFINITE);
 
}
 

	
 

	
 
void CSleep(int milliseconds)
 
{
 
	Sleep(milliseconds);
 
}
 
\ No newline at end of file