Bugfix - plib support would not compile anymore.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1496 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2008-02-15 03:51:31 +00:00
parent 88da3d1da4
commit 35af794f33
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ void MusicPlib::update()
}
//-----------------------------------------------------------------------------
bool MusicPlib::load(const char* filename)
bool MusicPlib::load(const std::string& filename)
{
m_filename= loader->getPath(filename);
return true;

View File

@ -47,7 +47,7 @@ public:
virtual void update();
virtual bool load(const char* filename);
virtual bool load(const std::string &filename);
virtual bool playMusic();
virtual bool stopMusic();