From daddc3317e8f71a2e0cabef4c58cdb3ad9c31223 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 6 Sep 2014 23:20:31 -0400 Subject: [PATCH] AudioCommon: Use std::string for the filename parameter of StartLogAudio --- Source/Core/AudioCommon/SoundStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/SoundStream.h b/Source/Core/AudioCommon/SoundStream.h index fcf360f678..7d663a6fd8 100644 --- a/Source/Core/AudioCommon/SoundStream.h +++ b/Source/Core/AudioCommon/SoundStream.h @@ -34,7 +34,7 @@ public: virtual void Clear(bool mute) { m_muted = mute; } bool IsMuted() const { return m_muted; } - virtual void StartLogAudio(const char *filename) + virtual void StartLogAudio(const std::string& filename) { if (! m_logAudio) {