mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
dspspy: add missing file to vcrpoj, fix resetting step counters on loading new ucode, normalize mem_dump.h newlines
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3419 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
402d9068e1
commit
b304332469
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9,00"
|
Version="9.00"
|
||||||
Name="DSPSpy"
|
Name="DSPSpy"
|
||||||
ProjectGUID="{3877AA3E-9CC0-4ADF-8E71-272EE4443478}"
|
ProjectGUID="{3877AA3E-9CC0-4ADF-8E71-272EE4443478}"
|
||||||
RootNamespace="DSPSpy"
|
RootNamespace="DSPSpy"
|
||||||
@ -122,6 +122,10 @@
|
|||||||
RelativePath=".\ConsoleHelper.h"
|
RelativePath=".\ConsoleHelper.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\dsp_interface.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\dsp_interface.h"
|
RelativePath=".\dsp_interface.h"
|
||||||
>
|
>
|
||||||
|
@ -480,7 +480,9 @@ int main()
|
|||||||
if(curUcode == NUM_UCODES)
|
if(curUcode == NUM_UCODES)
|
||||||
curUcode = 0;
|
curUcode = 0;
|
||||||
|
|
||||||
dsp_steps = 0; // Let's not add the new steps after the original ones. That was just annoying.
|
// Reset step counters for since we're in a new ucode.
|
||||||
|
show_step = 0;
|
||||||
|
dsp_steps = 0;
|
||||||
|
|
||||||
DCInvalidateRange(dspbufC, 0x2000);
|
DCInvalidateRange(dspbufC, 0x2000);
|
||||||
for (int n = 0 ; n < 0x2000 ; n++)
|
for (int n = 0 ; n < 0x2000 ; n++)
|
||||||
|
Loading…
Reference in New Issue
Block a user