Skip to content

Commit

Permalink
Atrac: add reschedule when resetting play pos.
Browse files Browse the repository at this point in the history
This matches tests, although the actual delay is more variable.
  • Loading branch information
unknownbrackets committed Nov 6, 2015
1 parent db323b7 commit ec5488c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/HLE/sceAtrac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1430,8 +1430,9 @@ static u32 sceAtracResetPlayPosition(int atracID, int sample, int bytesWrittenFi
atrac->currentSample = sample;
atrac->decodePos = atrac->getDecodePosBySample(sample);
}

return hleDelayResult(hleLogSuccessInfoI(ME, 0), "reset play pos", 3000);
}
return 0;
}

#ifdef USE_FFMPEG
Expand Down

0 comments on commit ec5488c

Please sign in to comment.