summaryrefslogtreecommitdiff
path: root/src/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound.h')
-rw-r--r--src/sound.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sound.h b/src/sound.h
index 39901121..07db0587 100644
--- a/src/sound.h
+++ b/src/sound.h
@@ -26,6 +26,8 @@
#include <SDL_mixer.h>
+#include <string>
+
/** Sound engine
*
* \ingroup CORE
@@ -105,7 +107,7 @@ class Sound {
*
* \param path Full path to file
*/
- void playSfx(const char *path);
+ void playSfx(const std::string &path);
private:
bool mInstalled;