Changeset - r2139:6871d2a8acac
[Not reviewed]
master
0 1 0
ludde - 19 years ago 2005-07-20 09:49:04
ludde@openttd.org
(svn r2649) Get rid of 2 warnings.
1 file changed with 2 insertions and 2 deletions:
win32.c
2
2
0 comments (0 inline, 0 general)
win32.c
Show inline comments
 
@@ -2299,7 +2299,7 @@ void CSleep(int milliseconds)
 

	
 
// Utility function to get the current timestamp in milliseconds
 
// Useful for profiling
 
int64 GetTS()
 
int64 GetTS(void)
 
{
 
	static double freq;
 
	__int64 value;
 
@@ -2309,4 +2309,4 @@ int64 GetTS()
 
	}
 
	QueryPerformanceCounter((LARGE_INTEGER*)&value);
 
	return (__int64)(value * freq);
 
}
 
\ No newline at end of file
 
}
0 comments (0 inline, 0 general)