- 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:
Randy Heit 2009-01-28 05:29:41 +00:00
commit a3b11af15a
10 changed files with 67 additions and 18 deletions

View file

@ -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: