mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Core: Convert State enum into an enum class
This commit is contained in:
parent
c4d470cbf2
commit
e07383a783
25 changed files with 103 additions and 103 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue