mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Minor const-correctness for some functions in FifoPlayer and some AudioCommon headers.
This commit is contained in:
parent
101bded6b3
commit
e0aa674c72
4 changed files with 10 additions and 10 deletions
|
@ -33,7 +33,7 @@ public:
|
|||
virtual void Stop() {}
|
||||
virtual void Update() {}
|
||||
virtual void Clear(bool mute) { m_muted = mute; }
|
||||
bool IsMuted() { return m_muted; }
|
||||
bool IsMuted() const { return m_muted; }
|
||||
virtual void StartLogAudio(const char *filename) {
|
||||
if (! m_logAudio) {
|
||||
m_logAudio = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue