diff options
| author | Glenn Rice <glennricster@gmail.com> | 2011-03-01 03:06:14 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2011-03-01 03:06:14 +0000 |
| commit | a5b471f4903646e44d03ea8ca6a830002342198c (patch) | |
| tree | 8c969652f59077466ed74ca9af10cf9ceaf37290 /Source/Core/AudioCommon | |
| parent | ba54fac9eb74be6f73e20e2de953cf6f355be57f (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.cpp | 2 |
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()); } |
