- Reverted updaterevision.vcproj to r385 and added a note as a build event
explaining the need to use mt.exe 6.0 or newer. Here is the note: VERY IMPORTANT: You must copy the mt.exe from %VSINSTALLDIR%\Common7\Tools\bin on top of the version in %VSINSTALLDIR%\VC\bin or your computer may restart while building. - Changed the ASecretTrigger::Activate() fix: There's no reason open scripts shouldn't be able to activate secret triggers; players just won't get credit for it in coop. - Added a NULL actor check to R_SetupFrame(). - Fixed: The player sounds in DEHSUPP were defined incorrectly. SVN r390 (trunk)
This commit is contained in:
parent
beca482a68
commit
04b80f8de5
7 changed files with 68 additions and 29 deletions
|
|
@ -975,6 +975,11 @@ void R_CopyStackedViewParameters()
|
|||
|
||||
void R_SetupFrame (AActor *actor)
|
||||
{
|
||||
if (actor == NULL)
|
||||
{
|
||||
I_Error ("Tried to render from a NULL actor.");
|
||||
}
|
||||
|
||||
player_t *player = actor->player;
|
||||
unsigned int newblend;
|
||||
InterpolationViewer *iview;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue