Changeset - r8079:6aca1c44007e
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2007-12-15 22:05:02
rubidium@openttd.org
(svn r11640) -Fix: missed change of include when moving stuff to random_func.cpp
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/core/random_func.cpp
Show inline comments
 
@@ -122,13 +122,13 @@ void SetRandomSeed(uint32 seed)
 
	_random_seeds[0][1] = seed;
 
	_random_seeds[1][0] = seed * 0x1234567;
 
	_random_seeds[1][1] = _random_seeds[1][0];
 
}
 

	
 
#ifdef RANDOM_DEBUG
 
#include "network/network_data.h"
 
#include "../network/network_data.h"
 
uint32 DoRandom(int line, const char *file)
 
{
 
	if (_networking && (DEREF_CLIENT(0)->status != STATUS_INACTIVE || !_network_server))
 
		printf("Random [%d/%d] %s:%d\n",_frame_counter, (byte)_current_player, file, line);
 
#else /* RANDOM_DEBUG */
 
uint32 Random()
0 comments (0 inline, 0 general)