- Fixed: Inventory.Icon printed error message for all the missing icons in

Strife's teaser.
- Fixed: st_start.cpp needed a 
  #define _WIN32_WINNT 0x0501.
- Fixed a few uninitialized variables warnings for GCC.


SVN r418 (trunk)
This commit is contained in:
Christoph Oelckers 2006-12-19 16:08:48 +00:00
commit 43ddce519c
6 changed files with 17 additions and 4 deletions

View file

@ -283,7 +283,7 @@ int FWadCollection::AddExternalFile(const char *filename)
LumpRecord lump;
lump.fullname = copystring(filename);
lump.name[0]=0;
memset(lump.name, 0, sizeof(lump.name));
lump.wadnum=-1;
lump.flags = LUMPF_EXTERNAL;
lump.position = 0;