Merge pull request #960 from ssakash/SPU2-Xconlog

SPU2-X: Update Console log to display Delay Cycles from the INI
This commit is contained in:
refractionpcsx2 2015-11-08 14:31:15 +00:00
commit 545e47aacc
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ void V_Voice::QueueStart()
if (Cycles - PlayCycle < delayCycles)
{
// Required by The Legend of Spyro: The Eternal Night (probably the other two legend games too)
ConLog(" *** KeyOn after less than 4 T disregarded.\n");
ConLog(" *** KeyOn after less than %d T disregarded.\n", delayCycles);
return;
}
PlayCycle = Cycles;