Skip to content

Commit

Permalink
Fix compile after rebasing develop on experiment branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Feb 10, 2018
1 parent 7889aed commit f5e8481
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions src/HighScore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,9 +744,6 @@ vector<float> HighScore::GetCopyOfOffsetVector() const { return m_Impl->vOffsetV
vector<int> HighScore::GetCopyOfNoteRowVector() const { return m_Impl->vNoteRowVector; }
const vector<float>& HighScore::GetOffsetVector() const { return m_Impl->vOffsetVector; }
const vector<int>& HighScore::GetNoteRowVector() const { return m_Impl->vNoteRowVector; }
bool HighScore::IsUploadedToServer(string s) const {
return find(m_Impl->uploaded.begin(), m_Impl->uploaded.end(), s) != m_Impl->uploaded.end();
}
string HighScore::GetScoreKey() const { return m_Impl->ScoreKey; }
float HighScore::GetSurviveSeconds() const { return m_Impl->fSurviveSeconds; }
float HighScore::GetSurvivalSeconds() const { return GetSurviveSeconds() + GetLifeRemainingSeconds(); }
Expand Down
7 changes: 0 additions & 7 deletions src/Song.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,13 +381,6 @@ void Song::FinalizeLoading()
IMAGECACHE->LoadImage( Image, GetCacheFile( Image ) );
}
}

if( !m_bHasMusic )
{
LOG->UserLog( "Song", sDir, "has no music; ignored." );
return false; // don't load this song
}
return true; // do load this song
}
/* This function feels EXTREMELY hacky - copying things on top of pointers so
* they don't break elsewhere. Maybe it could be rewritten to politely ask the
Expand Down

0 comments on commit f5e8481

Please sign in to comment.