mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-03 00:42:39 +00:00
enum CPUState: rename CPU_* to STATE_*
This commit is contained in:
parent
ee100cf827
commit
20a16beabd
13 changed files with 34 additions and 33 deletions
|
@ -18,7 +18,8 @@
|
|||
void PPCDebugInterface::Disassemble(unsigned int address, char *dest, int max_size)
|
||||
{
|
||||
// Memory::ReadUnchecked_U32 seemed to crash on shutdown
|
||||
if (PowerPC::GetState() == PowerPC::CPU_POWERDOWN) return;
|
||||
if (PowerPC::GetState() == PowerPC::STATE_POWERDOWN)
|
||||
return;
|
||||
|
||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue