Merging LSNtoMSF and lsn_to_msf reversed the order of the results in one spot. Change the order back.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2268 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-11-28 10:51:17 +00:00
parent fd141f08e7
commit b0db54ae35
1 changed files with 3 additions and 3 deletions

View File

@ -343,9 +343,9 @@ void cdrInterrupt() {
lsn_to_msf(cdr.ResultTD, trackInfo.lsn);
cdr.Stat = Acknowledge;
cdr.Result[0] = cdr.StatP;
cdr.Result[1] = cdr.ResultTD[0]; //itob(cdr.ResultTD[0]);
cdr.Result[2] = cdr.ResultTD[1]; //itob(cdr.ResultTD[1]);
cdr.Result[3] = cdr.ResultTD[2]; //itob(cdr.ResultTD[2]);
cdr.Result[1] = cdr.ResultTD[2];
cdr.Result[2] = cdr.ResultTD[1];
cdr.Result[3] = cdr.ResultTD[0];
}
break;