- Fixed: GCC compiler warnings.

- zipdir will no longer store files ending in '~' on Linux.
- Added st_oldouch which restores the old ouch face behavior of only showing when health increases by 20 while taking damage.

SVN r3035 (trunk)
This commit is contained in:
Braden Obrzut 2010-12-13 17:09:35 +00:00
commit ee20d0ea7a
4 changed files with 18 additions and 9 deletions

View file

@ -325,13 +325,13 @@ void FTextureManager::AddSwitchPair (FSwitchDef *def1, FSwitchDef *def2)
{
index1 = i;
sw1 = mSwitchDefs[index1];
if (index2 != -1) break;
if (index2 != -1u) break;
}
if (mSwitchDefs[i]->PreTexture == def2->PreTexture)
{
index2 = i;
sw2 = mSwitchDefs[index2];
if (index1 != -1) break;
if (index1 != -1u) break;
}
}