mirror of https://github.com/PCSX2/pcsx2.git
Possibly fixed the problem of gsdx not rendering correctly when stepping into.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4134 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1b5b9b055f
commit
33bed6a5d5
|
@ -236,6 +236,11 @@ namespace GSDumpGUI
|
|||
if (i == RunTo)
|
||||
{
|
||||
RunTo = -1;
|
||||
int idxnextReg = dump.Data.FindIndex(i, a => a.id == GSType.Registers);
|
||||
if (idxnextReg != -1)
|
||||
{
|
||||
Step(dump.Data[idxnextReg], pointer);
|
||||
}
|
||||
|
||||
GSData g = new GSData();
|
||||
g.id = GSType.VSync;
|
||||
|
|
Loading…
Reference in New Issue