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:
parent
6cd650271a
commit
67bf668ad9
5 changed files with 25 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue