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:
feal87@gmail.com 2010-12-24 08:52:32 +00:00
parent 1b5b9b055f
commit 33bed6a5d5
1 changed files with 5 additions and 0 deletions

View File

@ -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;