mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #10715 from Pokechu22/dspspy-incomplete-dump
DSPSpy: Fix incomplete result dumps
This commit is contained in:
commit
566da9ffd0
@ -474,11 +474,13 @@ void dump_all_ucodes(bool fastmode)
|
|||||||
|
|
||||||
real_dsp.Reset();
|
real_dsp.Reset();
|
||||||
|
|
||||||
VIDEO_WaitVSync();
|
|
||||||
// Loop over handling mail until we've stopped stepping
|
// Loop over handling mail until we've stopped stepping
|
||||||
// dsp_steps-3 compensates for mails to setup the ucode
|
// dsp_steps-3 compensates for mails to setup the ucode
|
||||||
for (int steps_cache = dsp_steps - 3; steps_cache <= dsp_steps; steps_cache++)
|
for (int steps_cache = dsp_steps - 3; steps_cache <= dsp_steps; steps_cache++)
|
||||||
|
{
|
||||||
|
VIDEO_WaitVSync();
|
||||||
handle_dsp_mail();
|
handle_dsp_mail();
|
||||||
|
}
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
|
|
||||||
sprintf(filename, "sd:/dsp_dump_all.bin");
|
sprintf(filename, "sd:/dsp_dump_all.bin");
|
||||||
|
Loading…
Reference in New Issue
Block a user