From db0e01bd7b604ebbae143a4a6f0975140edac443 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 24 Sep 2007 20:55:13 +0000 Subject: (svn r11157) -Fix: some random data was printed because printf "thought" that _current_player is 4 bytes instead of 1 byte, causing the random debug output to be useless. --- src/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc.cpp') diff --git a/src/misc.cpp b/src/misc.cpp index 2e3bd2bff..8a1c2975e 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -41,7 +41,7 @@ uint32 t; #ifdef RANDOM_DEBUG if (_networking && (DEREF_CLIENT(0)->status != STATUS_INACTIVE || !_network_server)) - printf("Random [%d/%d] %s:%d\n",_frame_counter, _current_player, file, line); + printf("Random [%d/%d] %s:%d\n",_frame_counter, (byte)_current_player, file, line); #endif s = _random_seeds[0][0]; -- cgit v1.2.3-54-g00ecf