mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -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:
@ -26,7 +26,7 @@ public:
|
||||
|
||||
bool Initialize(bool wii, bool dsp_thread) override;
|
||||
void Shutdown() override;
|
||||
bool IsLLE() override { return true; }
|
||||
bool IsLLE() const override { return true; }
|
||||
void DoState(PointerWrap& p) override;
|
||||
void PauseAndLock(bool do_lock, bool unpause_on_unlock = true) override;
|
||||
|
||||
|
Reference in New Issue
Block a user