Core: Convert State enum into an enum class

This commit is contained in:
Lioncash 2017-02-05 07:39:58 -05:00
commit e07383a783
25 changed files with 103 additions and 103 deletions

View file

@ -21,7 +21,7 @@ std::string PPCDebugInterface::Disassemble(unsigned int address)
if (!IsAlive())
return "";
if (Core::GetState() == Core::CORE_PAUSE)
if (Core::GetState() == Core::State::Paused)
{
if (!PowerPC::HostIsRAMAddress(address))
{