mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
SoundStream: Devirtualize StartLogAudio and StopLogAudio
These don't rely on anything that might need to be implemented in other SoundStream classes.
This commit is contained in:
parent
07d4dbe657
commit
6b30c9710c
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,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 std::string& filename)
|
void StartLogAudio(const std::string& filename)
|
||||||
{
|
{
|
||||||
if (!m_logAudio)
|
if (!m_logAudio)
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void StopLogAudio()
|
void StopLogAudio()
|
||||||
{
|
{
|
||||||
if (m_logAudio)
|
if (m_logAudio)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue