Fixed compilation

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5067 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2010-03-25 00:09:35 +00:00
parent 94144b3a04
commit fa87cd82c2

View File

@@ -66,8 +66,13 @@ public:
void setMasterMusicVolume(float gain);
float getMasterMusicVolume() const { return m_masterGain; }
MusicInformation *getCurrentMusic() {return m_current_music; }
MusicInformation *getMusicInformation(const std::string& filename) throw (std::runtime_error);
MusicInformation *getCurrentMusic() {return m_current_music; }
/**
* @throw runtime_error if the music file could not be found/opened
*/
MusicInformation *getMusicInformation(const std::string& filename);
void loadMusicFromOneDir(const std::string& dir);
void addMusicToTracks();