mirror of https://github.com/PCSX2/pcsx2.git
Bring the main gui on top when suspending emulation.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2355 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
7af22987b0
commit
89b2ecb4fa
|
@ -243,7 +243,7 @@ void GIFdma()
|
|||
CPU_INT(2, gscycles * BIAS);
|
||||
return;
|
||||
}
|
||||
else DevCon.WriteLn("GIFdma() case 1, but qwc = 0!"); //Don't do 0 GIFchain and then return
|
||||
//else DevCon.WriteLn("GIFdma() case 1, but qwc = 0!"); //Don't do 0 GIFchain and then return
|
||||
}
|
||||
|
||||
// Transfer Dn_QWC from Dn_MADR to GIF
|
||||
|
@ -261,7 +261,7 @@ void GIFdma()
|
|||
CPU_INT(2, gscycles * BIAS);
|
||||
return;
|
||||
}
|
||||
else DevCon.WriteLn("GIFdma() case 2, but qwc = 0!"); //Don't do 0 GIFchain and then return, fixes Dual Hearts
|
||||
//else DevCon.WriteLn("GIFdma() case 2, but qwc = 0!"); //Don't do 0 GIFchain and then return, fixes Dual Hearts
|
||||
}
|
||||
|
||||
if ((gif->chcr.MOD == CHAIN_MODE) && (!gspath3done)) // Chain Mode
|
||||
|
|
|
@ -139,6 +139,7 @@ namespace Implementations
|
|||
void Sys_Suspend()
|
||||
{
|
||||
CoreThread.Suspend();
|
||||
sMainFrame.SetFocus();
|
||||
}
|
||||
|
||||
void Sys_Resume()
|
||||
|
|
Loading…
Reference in New Issue