[Scummvm-cvs-logs] SF.net SVN: scummvm: [27066] scummvm/trunk/sound/mixer.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sun Jun 3 17:56:15 CEST 2007


Revision: 27066
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27066&view=rev
Author:   fingolfin
Date:     2007-06-03 08:56:14 -0700 (Sun, 03 Jun 2007)

Log Message:
-----------
Removed dead code

Modified Paths:
--------------
    scummvm/trunk/sound/mixer.cpp

Modified: scummvm/trunk/sound/mixer.cpp
===================================================================
--- scummvm/trunk/sound/mixer.cpp	2007-06-03 15:55:07 UTC (rev 27065)
+++ scummvm/trunk/sound/mixer.cpp	2007-06-03 15:56:14 UTC (rev 27066)
@@ -65,8 +65,6 @@
 	AudioStream *_input;
 
 public:
-
-	Channel(Mixer *mixer, Mixer::SoundType type, int id = -1);
 	Channel(Mixer *mixer, Mixer::SoundType type, AudioStream *input, bool autofreeStream, bool reverseStereo = false, int id = -1, bool permanent = false);
 	virtual ~Channel();
 
@@ -374,13 +372,6 @@
 #pragma mark -
 
 
-Channel::Channel(Mixer *mixer, Mixer::SoundType type, int id)
-	: _type(type), _mixer(mixer), _autofreeStream(true),
-	  _volume(Mixer::kMaxChannelVolume), _balance(0), _paused(false), _id(id), _samplesConsumed(0),
-	  _samplesDecoded(0), _mixerTimeStamp(0), _converter(0), _input(0) {
-	assert(mixer);
-}
-
 Channel::Channel(Mixer *mixer, Mixer::SoundType type, AudioStream *input,
 				bool autofreeStream, bool reverseStereo, int id, bool permanent)
 	: _type(type), _mixer(mixer), _autofreeStream(autofreeStream),


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list