- Fixed: In case the path to strife1.wad didn't contain any '/' an

incorrect path was created for voices.wad.
- Fixed: The code building the path for Strife's voices.wad called the
  wrong FString constructor.
- Fixed: LS_Thing_SetGoal set MF5_CHASEGOAL in flags, not flags5.

SVN r128 (trunk)
This commit is contained in:
Christoph Oelckers 2006-05-18 15:03:35 +00:00
commit 1971f97fd6
3 changed files with 10 additions and 3 deletions

View file

@ -1616,11 +1616,11 @@ static EIWADType IdentifyVersion (const char *zdoom_wad)
if (lastslash == -1)
{
path = wads[pickwad].Path;
path = "";// wads[pickwad].Path;
}
else
{
path = FString (wads[pickwad].Path, lastslash + 1);
path = FString (wads[pickwad].Path.GetChars(), lastslash + 1);
}
path += "voices.wad";
D_AddFile (path);