win32.c
changeset 4369 02b9ab2cf501
parent 4321 b763b7007162
child 4370 c7bd128b1670
--- a/win32.c	Thu Aug 24 10:11:32 2006 +0000
+++ b/win32.c	Thu Aug 24 10:19:59 2006 +0000
@@ -859,8 +859,8 @@
 	_set_error_mode(_OUT_TO_MSGBOX); // force assertion output to messagebox
 
 	// setup random seed to something quite random
-	_random_seeds[0][0] = GetTickCount();
-	_random_seeds[0][1] = _random_seeds[0][0] * 0x1234567;
+	_random_seeds[1][0] = _random_seeds[0][0] = GetTickCount();
+	_random_seeds[1][1] = _random_seeds[0][1] = _random_seeds[0][0] * 0x1234567;
 	SeedMT(_random_seeds[0][0]);
 
 	argc = ParseCommandLine(GetCommandLine(), argv, lengthof(argv));