mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
Fix spelling of IsRunned to IsRunning
This commit is contained in:
parent
d249bfef4d
commit
96c692aefc
11 changed files with 35 additions and 35 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue