mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +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
|
|
@ -78,14 +78,14 @@ void DisAsmFrame::AddLine(const wxString line)
|
|||
{
|
||||
static bool finished = false;
|
||||
|
||||
if(finished && Emu.IsRunned())
|
||||
if(finished && Emu.IsRunning())
|
||||
{
|
||||
count = 0;
|
||||
finished = false;
|
||||
}
|
||||
else if(count >= LINES_OPCODES || !Emu.IsRunned())
|
||||
else if(count >= LINES_OPCODES || !Emu.IsRunning())
|
||||
{
|
||||
if(Emu.IsRunned()) Emu.Pause();
|
||||
if(Emu.IsRunning()) Emu.Pause();
|
||||
finished = true;
|
||||
CPU.PrevPc();
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue