Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1013 from lioncash/string
AudioCommon: Use std::string for the filename parameter of StartLogAudio
  • Loading branch information
skidau committed Sep 7, 2014
2 parents 562c0d7 + daddc33 commit 28253f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/AudioCommon/SoundStream.h
Expand Up @@ -34,7 +34,7 @@ class SoundStream
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)
{
Expand Down

0 comments on commit 28253f4

Please sign in to comment.