SPU2-X: Small fix for bad resets.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3219 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-06-17 20:10:28 +00:00
parent 9390afdbf1
commit 668a425a18
1 changed files with 3 additions and 3 deletions

View File

@ -150,9 +150,9 @@ void V_Core::Reset( int index )
Voices[v].ADSR.Value = 0;
Voices[v].ADSR.Phase = 0;
Voices[v].Pitch = 0x3FFF;
Voices[v].NextA = 2800;
Voices[v].StartA = 2800;
Voices[v].LoopStartA = 2800;
Voices[v].NextA = 0x2800;
Voices[v].StartA = 0x2800;
Voices[v].LoopStartA = 0x2800;
}
DMAICounter = 0;