Remove unused Mode_PlayTrack and m_trackToPlay

This commit is contained in:
Colin Wallace
2015-04-27 06:33:22 +00:00
parent d9c2be73fa
commit 57cdfe1b66
2 changed files with 0 additions and 7 deletions

View File

@@ -57,7 +57,6 @@ public:
{
Mode_None,
Mode_PlaySong,
Mode_PlayTrack,
Mode_PlayBB,
Mode_PlayPattern,
Mode_PlayAutomationPattern,
@@ -352,7 +351,6 @@ private:
PlayPos m_playPos[Mode_Count];
tact_t m_length;
Track * m_trackToPlay;
const Pattern* m_patternToPlay;
bool m_loopPattern;

View File

@@ -94,7 +94,6 @@ Song::Song() :
m_errors( new QList<QString>() ),
m_playMode( Mode_None ),
m_length( 0 ),
m_trackToPlay( NULL ),
m_patternToPlay( NULL ),
m_loopPattern( false ),
m_elapsedMilliSeconds( 0 ),
@@ -221,10 +220,6 @@ void Song::processNextBuffer()
}
break;
case Mode_PlayTrack:
trackList.push_back( m_trackToPlay );
break;
case Mode_PlayBB:
if( Engine::getBBTrackContainer()->numOfBBs() > 0 )
{