mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
CPUCoreBase: Make the GetName() member function const qualified
This function should have no need to modify internal class state.
This commit is contained in:
parent
c738ddc4aa
commit
397b3fb976
8 changed files with 8 additions and 8 deletions
|
@ -30,7 +30,7 @@ public:
|
|||
void ClearCache() override {}
|
||||
void Run() override {}
|
||||
void SingleStep() override {}
|
||||
const char* GetName() override { return nullptr; }
|
||||
const char* GetName() const override { return nullptr; }
|
||||
// JitBase methods
|
||||
JitBaseBlockCache* GetBlockCache() override { return nullptr; }
|
||||
void Jit(u32 em_address) override {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue