mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Fix Emulator::IsPaused()
This commit is contained in:
parent
66df38957b
commit
aad5283786
5 changed files with 32 additions and 45 deletions
|
|
@ -741,7 +741,7 @@ bool gdb_thread::cmd_vcont(gdb_cmd& cmd)
|
|||
}
|
||||
ppu->state -= cpu_flag::dbg_pause;
|
||||
//special case if app didn't start yet (only loaded)
|
||||
if (!Emu.IsPaused() && !Emu.IsRunning()) {
|
||||
if (Emu.IsReady()) {
|
||||
Emu.Run(true);
|
||||
}
|
||||
if (Emu.IsPaused()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue