From eefd175900ccda4a9c8043610c340e1447c3c8eb Mon Sep 17 00:00:00 2001 From: Cornee Traas Date: Thu, 5 Sep 2013 10:06:59 +0200 Subject: [PATCH] Fix more spelling mistakes --- rpcs3/Emu/System.cpp | 2 +- rpcs3/Gui/InterpreterDisAsm.cpp | 2 +- rpcs3/Gui/MainFrame.cpp | 20 ++++++++++---------- rpcs3/rpcs3.h | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index d518a6403a..31b8fb556b 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -268,7 +268,7 @@ void Emulator::Stop() Memory.Close(); //if(m_memory_viewer && m_memory_viewer->IsShown()) m_memory_viewer->Hide(); - wxGetApp().SendDbgCommand(DID_STOPED_EMU); + wxGetApp().SendDbgCommand(DID_STOPPED_EMU); } void Emulator::SavePoints(const wxString& path) diff --git a/rpcs3/Gui/InterpreterDisAsm.cpp b/rpcs3/Gui/InterpreterDisAsm.cpp index 7e5ee3e304..346a03810c 100644 --- a/rpcs3/Gui/InterpreterDisAsm.cpp +++ b/rpcs3/Gui/InterpreterDisAsm.cpp @@ -301,7 +301,7 @@ void InterpreterDisAsmFrame::HandleCommand(wxCommandEvent& event) { switch(event.GetId()) { - case DID_STOPED_EMU: + case DID_STOPPED_EMU: UpdateUnitList(); break; diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index c6698ce399..d5d5a02530 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -126,19 +126,19 @@ void MainFrame::DoSettings(bool load) void MainFrame::BootGame(wxCommandEvent& WXUNUSED(event)) { - bool stoped = false; + bool stopped = false; if(Emu.IsRunning()) { Emu.Pause(); - stoped = true; + stopped = true; } wxDirDialog ctrl(this, L"Select game folder", wxEmptyString); if(ctrl.ShowModal() == wxID_CANCEL) { - if(stoped) Emu.Resume(); + if(stopped) Emu.Resume(); return; } @@ -171,12 +171,12 @@ void MainFrame::BootGame(wxCommandEvent& WXUNUSED(event)) void MainFrame::BootElf(wxCommandEvent& WXUNUSED(event)) { - bool stoped = false; + bool stopped = false; if(Emu.IsRunning()) { Emu.Pause(); - stoped = true; + stopped = true; } wxFileDialog ctrl(this, L"Select ELF", wxEmptyString, wxEmptyString, "*.*", @@ -184,7 +184,7 @@ void MainFrame::BootElf(wxCommandEvent& WXUNUSED(event)) if(ctrl.ShowModal() == wxID_CANCEL) { - if(stoped) Emu.Resume(); + if(stopped) Emu.Resume(); return; } @@ -200,12 +200,12 @@ void MainFrame::BootElf(wxCommandEvent& WXUNUSED(event)) void MainFrame::BootSelf(wxCommandEvent& WXUNUSED(event)) { - bool stoped = false; + bool stopped = false; if(Emu.IsRunning()) { Emu.Pause(); - stoped = true; + stopped = true; } wxFileDialog ctrl(this, L"Select SELF", wxEmptyString, wxEmptyString, "*.*", @@ -213,7 +213,7 @@ void MainFrame::BootSelf(wxCommandEvent& WXUNUSED(event)) if(ctrl.ShowModal() == wxID_CANCEL) { - if(stoped) Emu.Resume(); + if(stopped) Emu.Resume(); return; } @@ -394,7 +394,7 @@ void MainFrame::UpdateUI(wxCommandEvent& event) break; case DID_STOP_EMU: - case DID_STOPED_EMU: + case DID_STOPPED_EMU: is_running = false; is_stopped = true; is_ready = false; diff --git a/rpcs3/rpcs3.h b/rpcs3/rpcs3.h index 6d1ff5911a..94dddbae9b 100644 --- a/rpcs3/rpcs3.h +++ b/rpcs3/rpcs3.h @@ -24,7 +24,7 @@ enum DbgCommand DID_START_EMU, DID_STARTED_EMU, DID_STOP_EMU, - DID_STOPED_EMU, + DID_STOPPED_EMU, DID_PAUSE_EMU, DID_PAUSED_EMU, DID_RESUME_EMU,