summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon
diff options
context:
space:
mode:
authorGlenn Rice <glennricster@gmail.com>2011-03-01 03:06:14 +0000
committerGlenn Rice <glennricster@gmail.com>2011-03-01 03:06:14 +0000
commita5b471f4903646e44d03ea8ca6a830002342198c (patch)
tree8c969652f59077466ed74ca9af10cf9ceaf37290 /Source/Core/AudioCommon
parentba54fac9eb74be6f73e20e2de953cf6f355be57f (diff)
More conversion from char * to std::string.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7266 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/AudioCommon')
-rw-r--r--Source/Core/AudioCommon/Src/AudioCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/Src/AudioCommon.cpp b/Source/Core/AudioCommon/Src/AudioCommon.cpp
index 67d892b557..637f74502b 100644
--- a/Source/Core/AudioCommon/Src/AudioCommon.cpp
+++ b/Source/Core/AudioCommon/Src/AudioCommon.cpp
@@ -57,7 +57,7 @@ namespace AudioCommon
if (ac_Config.m_DumpAudio)
{
std::string audio_file_name = File::GetUserPath(D_DUMPAUDIO_IDX) + "audiodump.wav";
- File::CreateFullPath(audio_file_name.c_str());
+ File::CreateFullPath(audio_file_name);
mixer->StartLogAudio(audio_file_name.c_str());
}