mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
Core: Convert State enum into an enum class
This commit is contained in:
@ -512,7 +512,7 @@ void MainMenuBar::RefreshPlayMenuLabel() const
|
||||
{
|
||||
auto* const item = FindItem(IDM_PLAY);
|
||||
|
||||
if (Core::GetState() == Core::CORE_RUN)
|
||||
if (Core::GetState() == Core::State::Running)
|
||||
item->SetItemLabel(_("&Pause"));
|
||||
else
|
||||
item->SetItemLabel(_("&Play"));
|
||||
|
Reference in New Issue
Block a user