April 20, 2006 (Changes by Graf Zahl)

- Fixed: Strife's ending check included destroying the computer - an event
  that happens before the branch in the story.
- Fixed: The overloaded FRandom::Random2 function with mask parameter didn't
  use its parameter.
- Added Jim's latest makefile.linux


SVN r60 (trunk)
This commit is contained in:
Christoph Oelckers 2006-04-21 16:32:49 +00:00
commit 67bf668ad9
5 changed files with 25 additions and 6 deletions

View file

@ -152,8 +152,8 @@ int FRandom::Random2 ()
int FRandom::Random2 (int mask)
{
int t = (*this)();
int u = (*this)();
int t = (*this)(mask);
int u = (*this)(mask);
return t - u;
}