Fix spelling of IsRunned to IsRunning

This commit is contained in:
Cornee Traas 2013-08-12 11:56:56 +02:00
parent d249bfef4d
commit 96c692aefc
11 changed files with 35 additions and 35 deletions

View file

@ -161,7 +161,7 @@ wxArrayString PPCThread::ErrorToString(const u32 error)
void PPCThread::Run()
{
if(IsRunned()) Stop();
if(IsRunning()) Stop();
if(IsPaused())
{
Resume();
@ -170,7 +170,7 @@ void PPCThread::Run()
wxGetApp().SendDbgCommand(DID_START_THREAD, this);
m_status = Runned;
m_status = Running;
SetPc(entry);
InitStack();
@ -187,7 +187,7 @@ void PPCThread::Resume()
wxGetApp().SendDbgCommand(DID_RESUME_THREAD, this);
m_status = Runned;
m_status = Running;
DoResume();
Emu.CheckStatus();
@ -198,7 +198,7 @@ void PPCThread::Resume()
void PPCThread::Pause()
{
if(!IsRunned()) return;
if(!IsRunning()) return;
wxGetApp().SendDbgCommand(DID_PAUSE_THREAD, this);