- fixed: THe Timidity player didn't close its temporary files and left them

behind because it couldn't delete them.
- added a $MidiDevice option to SNDINFO which can either set the preferred
  MIDI device for a song to Timidity or Windows' standard MIDI device.
  The reason for this: About 80% of my MIDI music collection sounds better
  with Timidity and the other 20% with Windows' standard synth and I'd like
  to be able to use each with the one that sounds better. For MUS files you
  can also force the use of OPL playback.
- added telefrag option to A_SpawnItemEx.


SVN r545 (trunk)
This commit is contained in:
Christoph Oelckers 2007-09-12 00:20:11 +00:00
commit e8875041ca
11 changed files with 76 additions and 16 deletions

View file

@ -1451,7 +1451,8 @@ enum SIX_Flags
SIXF_ABSOLUTEANGLE=4,
SIXF_ABSOLUTEMOMENTUM=8,
SIXF_SETMASTER=16,
SIXF_NOCHECKPOSITION=32
SIXF_NOCHECKPOSITION=32,
SIXF_TELEFRAG=64
};
void A_SpawnItemEx(AActor * self)
@ -1520,6 +1521,7 @@ void A_SpawnItemEx(AActor * self)
mo->momy=ymom;
mo->momz=zmom;
mo->angle=Angle;
if (flags & SIXF_TELEFRAG) P_TeleportMove(mo, mo->x, mo->y, mo->z, true);
}
}