- More GCC warning removal, the most egregious of which was the potential
vulnerability "format not a string literal and no format arguments". - Changed the CMake script to search for fmod libraries by full name instead of assuming a symbolic link has been placed for the latest version. It can also find a non-installed copy of FMOD if it is placed local to the ZDoom source tree. SVN r1373 (trunk)
This commit is contained in:
parent
9346b5d686
commit
a3b11af15a
10 changed files with 67 additions and 18 deletions
|
|
@ -1997,7 +1997,7 @@ void Net_DoCommand (int type, BYTE **stream, int player)
|
|||
|
||||
case DEM_PRINT:
|
||||
s = ReadString (stream);
|
||||
Printf (s);
|
||||
Printf ("%s", s);
|
||||
break;
|
||||
|
||||
case DEM_CENTERPRINT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue