Changeset - r732:834239dd59ac
[Not reviewed]
master
0 1 0
truelight - 19 years ago 2004-12-20 15:25:39
truelight@openttd.org
(svn r1184) -Fix: [Network] %p as chat message no longer gives funny result (tnx to
GeniusDex (that makes 10 ;)))
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
network.c
Show inline comments
 
@@ -157,8 +157,8 @@ void CDECL NetworkTextMessage(NetworkAct
 
			break;
 
	}
 

	
 
	IConsolePrintF(color, message);
 
	AddTextMessage(color, duration, message);
 
	IConsolePrintF(color, "%s", message);
 
	AddTextMessage(color, duration, "%s", message);
 
}
 

	
 
// Calculate the frame-lag of a client
0 comments (0 inline, 0 general)