From: havoc Date: Fri, 6 Apr 2007 09:42:43 +0000 (+0000) Subject: changed "new engine string" prints to also include the current text stored in the... X-Git-Tag: xonotic-v0.1.0preview~3360 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=b2d2ee0fe91a0f3820c4d66842f1143224620a41;p=xonotic%2Fdarkplaces.git changed "new engine string" prints to also include the current text stored in the string, to aid in understanding what engine strings are being used git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7059 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_edict.c b/prvm_edict.c index 302f09b1..8a97b425 100644 --- a/prvm_edict.c +++ b/prvm_edict.c @@ -2091,7 +2091,7 @@ int PRVM_SetEngineString(const char *s) return -1 - i; // new unknown engine string if (developer.integer >= 200) - Con_Printf("new engine string %p\n", s); + Con_Printf("new engine string %p = \"%s\"\n", s, s); for (i = prog->firstfreeknownstring;i < prog->numknownstrings;i++) if (!prog->knownstrings[i]) break;