mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12: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
|
@ -145,7 +145,7 @@ void Emulator::Run()
|
|||
if(!IsReady()) return;
|
||||
}
|
||||
|
||||
if(IsRunned()) Stop();
|
||||
if(IsRunning()) Stop();
|
||||
if(IsPaused())
|
||||
{
|
||||
Resume();
|
||||
|
@ -156,7 +156,7 @@ void Emulator::Run()
|
|||
|
||||
wxCriticalSectionLocker lock(m_cs_status);
|
||||
//ConLog.Write("run...");
|
||||
m_status = Runned;
|
||||
m_status = Running;
|
||||
|
||||
m_vfs.Mount("/", vfsDevice::GetRoot(m_path), new vfsLocalFile());
|
||||
m_vfs.Mount("/dev_hdd0/", wxGetCwd() + "\\dev_hdd0\\", new vfsLocalFile());
|
||||
|
@ -189,7 +189,7 @@ void Emulator::Run()
|
|||
|
||||
void Emulator::Pause()
|
||||
{
|
||||
if(!IsRunned()) return;
|
||||
if(!IsRunning()) return;
|
||||
//ConLog.Write("pause...");
|
||||
wxGetApp().SendDbgCommand(DID_PAUSE_EMU);
|
||||
|
||||
|
@ -205,10 +205,10 @@ void Emulator::Resume()
|
|||
wxGetApp().SendDbgCommand(DID_RESUME_EMU);
|
||||
|
||||
wxCriticalSectionLocker lock(m_cs_status);
|
||||
m_status = Runned;
|
||||
m_status = Running;
|
||||
|
||||
CheckStatus();
|
||||
if(IsRunned() && Ini.CPUDecoderMode.GetValue() != 1) GetCPU().Exec();
|
||||
if(IsRunning() && Ini.CPUDecoderMode.GetValue() != 1) GetCPU().Exec();
|
||||
wxGetApp().SendDbgCommand(DID_RESUMED_EMU);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue