mirror of https://github.com/PCSX2/pcsx2.git
Kingcom fixed a small annoyance where the savestate hotkeys would defocus the GS window, causing them to not work after one use.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5909 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8a92ad1434
commit
44d43495a7
|
@ -272,8 +272,10 @@ void DisassemblyDialog::setDebugMode(bool debugMode)
|
|||
|
||||
eeTab->getDisassembly()->gotoPc();
|
||||
iopTab->getDisassembly()->gotoPc();
|
||||
if (currentCpu != NULL)
|
||||
currentCpu->getDisassembly()->SetFocus();
|
||||
|
||||
// Defocuses main window even when not debugging, causing savestate hotkeys to fail
|
||||
/*if (currentCpu != NULL)
|
||||
currentCpu->getDisassembly()->SetFocus();*/
|
||||
} else {
|
||||
breakRunButton->SetLabel(L"Break");
|
||||
|
||||
|
|
Loading…
Reference in New Issue