From edc6c79f26f05d4f00d5a121a182dc0a39b482aa Mon Sep 17 00:00:00 2001 From: dresk Date: Mon, 9 Jul 2007 00:02:55 +0000 Subject: [PATCH] Removed inline from function Con_Rcon_AddChar due to MSVC8 (Visual Studio 2005) not supporting the C99 standard (which supports inline). Potential future compiler check for feature. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7475 d7cf8633-e32d-0410-b094-e92efae38249 --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.c b/console.c index eeed6627..5efd1884 100644 --- a/console.c +++ b/console.c @@ -677,7 +677,7 @@ Con_Rcon_AddChar Adds a character to the rcon buffer ================ */ -inline void Con_Rcon_AddChar(char c) +void Con_Rcon_AddChar(char c) { // if this print is in response to an rcon command, add the character // to the rcon redirect buffer -- 2.39.2