mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
Merge pull request #1013 from lioncash/string
AudioCommon: Use std::string for the filename parameter of StartLogAudio
This commit is contained in:
commit
28253f4538
@ -34,7 +34,7 @@ public:
|
|||||||
virtual void Clear(bool mute) { m_muted = mute; }
|
virtual void Clear(bool mute) { m_muted = mute; }
|
||||||
bool IsMuted() const { return m_muted; }
|
bool IsMuted() const { return m_muted; }
|
||||||
|
|
||||||
virtual void StartLogAudio(const char *filename)
|
virtual void StartLogAudio(const std::string& filename)
|
||||||
{
|
{
|
||||||
if (! m_logAudio)
|
if (! m_logAudio)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user