mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06: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:
@ -102,7 +102,7 @@ public:
|
||||
PanicAlertT("Cannot SingleStep the FIFO. Use Frame Advance instead.");
|
||||
}
|
||||
|
||||
const char* GetName() override { return "FifoPlayer"; }
|
||||
const char* GetName() const override { return "FifoPlayer"; }
|
||||
void Run() override
|
||||
{
|
||||
while (CPU::GetState() == CPU::State::Running)
|
||||
|
Reference in New Issue
Block a user