- Added an OutputVolume() call after the MusicVolumeChanged() call in

MIDIStreamer::Play(). Since the state isn't playing yet when
  MusicVolumeChanged() is called, it doesn't do this itself.


SVN r1491 (trunk)
This commit is contained in:
Randy Heit 2009-03-20 01:58:33 +00:00
parent 7a06d3a71a
commit 301a554a69
3 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,7 @@
March 19, 2009 March 19, 2009
- Added an OutputVolume() call after the MusicVolumeChanged() call in
MIDIStreamer::Play(). Since the state isn't playing yet when
MusicVolumeChanged() is called, it doesn't do this itself.
- Fixed: P_RailAttack() passed the wrong angle variable to P_TraceBleed(). - Fixed: P_RailAttack() passed the wrong angle variable to P_TraceBleed().
March 18, 2009 (Changes by Graf Zahl) March 18, 2009 (Changes by Graf Zahl)

View file

@ -247,6 +247,7 @@ void MIDIStreamer::Play(bool looping, int subsong)
} }
MusicVolumeChanged(); // set volume to current music's properties MusicVolumeChanged(); // set volume to current music's properties
OutputVolume(Volume);
#ifdef _WIN32 #ifdef _WIN32
ResetEvent(ExitEvent); ResetEvent(ExitEvent);

View file

@ -215,11 +215,15 @@ void WinMIDIDevice::Stop()
// Bit 14: Select drum set if 1, tone bank if 0 // Bit 14: Select drum set if 1, tone bank if 0
// //
// My old GUS PnP needed the instruments to be preloaded, or it would miss // My old GUS PnP needed the instruments to be preloaded, or it would miss
// some notes the first time through the song. I doubt any modern // some notes the first time through a song. I doubt any modern
// hardware has this problem, but since I'd already written the code for // hardware has this problem, but since I'd already written the code for
// ZDoom 1.22 and below, I'm resurrecting it now for completeness, since I'm // ZDoom 1.22 and below, I'm resurrecting it now for completeness, since I'm
// using preloading for the internal Timidity. // using preloading for the internal Timidity.
// //
// NOTETOSELF: Why did I never notice the midiOutCache(Drum)Patches calls
// before now? Should I switch to them? This code worked on my GUS, but
// using the APIs intended for caching might be better.
//
//========================================================================== //==========================================================================
void WinMIDIDevice::PrecacheInstruments(const WORD *instruments, int count) void WinMIDIDevice::PrecacheInstruments(const WORD *instruments, int count)