mirror of https://github.com/PCSX2/pcsx2.git
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:
commit
545e47aacc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue