mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 02:21:26 +02: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
@ -32,7 +32,7 @@ public:
|
||||
virtual void Clear(bool mute) { m_muted = mute; }
|
||||
bool IsMuted() const { return m_muted; }
|
||||
|
||||
virtual void StartLogAudio(const std::string& filename)
|
||||
void StartLogAudio(const std::string& filename)
|
||||
{
|
||||
if (!m_logAudio)
|
||||
{
|
||||
@ -47,7 +47,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
virtual void StopLogAudio()
|
||||
void StopLogAudio()
|
||||
{
|
||||
if (m_logAudio)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user