mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
DSPEmulator: Make the IsLLE() member function const-qualified
This function only queries state and doesn't modify it, so this can be made a const member function
This commit is contained in:
@ -13,7 +13,7 @@ class DSPEmulator
|
||||
{
|
||||
public:
|
||||
virtual ~DSPEmulator();
|
||||
virtual bool IsLLE() = 0;
|
||||
virtual bool IsLLE() const = 0;
|
||||
|
||||
virtual bool Initialize(bool wii, bool dsp_thread) = 0;
|
||||
virtual void Shutdown() = 0;
|
||||
|
Reference in New Issue
Block a user